File tree Expand file tree Collapse file tree
packages/server/api/test/integration/ce/benchmark Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -155,6 +155,14 @@ describe('Benchmark wizard API', () => {
155155 ) ;
156156 expect ( wizardServiceMock . resolveWizardNavigation ) . toHaveBeenCalledWith (
157157 provider ,
158+ expect . objectContaining ( {
159+ config : expect . objectContaining ( {
160+ provider,
161+ steps : expect . arrayContaining ( [ expect . anything ( ) ] ) ,
162+ } ) ,
163+ resolveOptions : expect . any ( Function ) ,
164+ evaluateCondition : expect . any ( Function ) ,
165+ } ) ,
158166 {
159167 currentStep : undefined ,
160168 wizardState : undefined ,
@@ -183,6 +191,14 @@ describe('Benchmark wizard API', () => {
183191 expect ( response ?. json ( ) ) . toEqual ( mockWizardStep ) ;
184192 expect ( wizardServiceMock . resolveWizardNavigation ) . toHaveBeenCalledWith (
185193 provider ,
194+ expect . objectContaining ( {
195+ config : expect . objectContaining ( {
196+ provider,
197+ steps : expect . arrayContaining ( [ expect . anything ( ) ] ) ,
198+ } ) ,
199+ resolveOptions : expect . any ( Function ) ,
200+ evaluateCondition : expect . any ( Function ) ,
201+ } ) ,
186202 {
187203 currentStep : 'connection' ,
188204 wizardState : { connection : [ 'conn-1' ] } ,
You can’t perform that action at this time.
0 commit comments