File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ export const createGroup = async (page: Page): Promise<string> => {
239
239
240
240
const name = randomName ( ) ;
241
241
await page . getByLabel ( "Name" , { exact : true } ) . fill ( name ) ;
242
- await page . getByRole ( "button" , { name : / s a v e / i } ) . click ( ) ;
242
+ await page . getByTestId ( "form-submit" ) . click ( ) ;
243
243
await expectUrl ( page ) . toHavePathName ( `/deployment/groups/${ name } ` ) ;
244
244
return name ;
245
245
} ;
@@ -470,10 +470,10 @@ export const waitUntilUrlIsNotResponding = async (url: string) => {
470
470
// Allows users to more easily define properties they want for agents and resources!
471
471
type RecursivePartial < T > = {
472
472
[ P in keyof T ] ?: T [ P ] extends ( infer U ) [ ]
473
- ? RecursivePartial < U > [ ]
474
- : T [ P ] extends object | undefined
475
- ? RecursivePartial < T [ P ] >
476
- : T [ P ] ;
473
+ ? RecursivePartial < U > [ ]
474
+ : T [ P ] extends object | undefined
475
+ ? RecursivePartial < T [ P ] >
476
+ : T [ P ] ;
477
477
} ;
478
478
479
479
interface EchoProvisionerResponses {
You can’t perform that action at this time.
0 commit comments