Skip to content

Commit cef7bfa

Browse files
authored
Upgrade @testing-library/jest-dom to fix #343 and run Prettier (#347)
1 parent 6c655b1 commit cef7bfa

File tree

8 files changed

+915
-761
lines changed

8 files changed

+915
-761
lines changed

integration_tests/fixtures/index.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ type Fixtures = {
1313
openProjectPage: (
1414
id: string,
1515
buildId?: string,
16-
testId?: string
16+
testId?: string,
1717
) => Promise<ProjectPage>;
1818
openTestVariationListPage: (
19-
projectId: string
19+
projectId: string,
2020
) => Promise<TestVariationListPage>;
2121
openTestVariationDetailsPage: (
22-
id: string
22+
id: string,
2323
) => Promise<TestVariationDetailsPage>;
2424
projectListPage: ProjectListPage;
2525
profilePage: ProfilePage;
@@ -106,8 +106,8 @@ export const test = base.extend<Fixtures>({
106106
apiKey: "ASJDHGAKJSDGASD",
107107
role: "admin",
108108
token: "eyJsgOE8Bw2bFwhZAugRRGm8U",
109-
})
110-
)
109+
}),
110+
),
111111
);
112112

113113
await use();

integration_tests/test/projec.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,6 @@ test("can download images", async ({ openProjectPage, page }) => {
6262
await projectPage.modal.confirmBtn.click();
6363

6464
await expect(projectPage.notification.message).toHaveText(
65-
"2 test runs processed."
65+
"2 test runs processed.",
6666
);
6767
});

0 commit comments

Comments
 (0)