Skip to content

Commit 6df14a6

Browse files
committed
fix create group test
1 parent b14b1e3 commit 6df14a6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

site/e2e/helpers.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export const createGroup = async (page: Page): Promise<string> => {
239239

240240
const name = randomName();
241241
await page.getByLabel("Name", { exact: true }).fill(name);
242-
await page.getByRole("button", { name: /save/i }).click();
242+
await page.getByTestId("form-submit").click();
243243
await expectUrl(page).toHavePathName(`/deployment/groups/${name}`);
244244
return name;
245245
};
@@ -470,10 +470,10 @@ export const waitUntilUrlIsNotResponding = async (url: string) => {
470470
// Allows users to more easily define properties they want for agents and resources!
471471
type RecursivePartial<T> = {
472472
[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];
477477
};
478478

479479
interface EchoProvisionerResponses {

0 commit comments

Comments
 (0)