File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -293,13 +293,13 @@ export const createTemplate = async (
293
293
* random name.
294
294
*/
295
295
export const createGroup = async ( page : Page ) : Promise < string > => {
296
- await page . goto ( "/groups/create" , { waitUntil : "domcontentloaded" } ) ;
297
- await expectUrl ( page ) . toHavePathName ( "/groups/create" ) ;
296
+ await page . goto ( "/deployment/ groups/create" , { waitUntil : "domcontentloaded" } ) ;
297
+ await expectUrl ( page ) . toHavePathName ( "/deployment/ groups/create" ) ;
298
298
299
299
const name = randomName ( ) ;
300
300
await page . getByLabel ( "Name" , { exact : true } ) . fill ( name ) ;
301
301
await page . getByRole ( "button" , { name : / s a v e / i } ) . click ( ) ;
302
- await expectUrl ( page ) . toHavePathName ( `/groups/${ name } ` ) ;
302
+ await expectUrl ( page ) . toHavePathName ( `/deployment/ groups/${ name } ` ) ;
303
303
return name ;
304
304
} ;
305
305
You can’t perform that action at this time.
0 commit comments