Skip to content

Commit

Permalink
Upgrade @testing-library/jest-dom to fix #343 and run Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
paazmaya committed Sep 19, 2023
1 parent 6c655b1 commit 470d31a
Show file tree
Hide file tree
Showing 8 changed files with 915 additions and 761 deletions.
10 changes: 5 additions & 5 deletions integration_tests/fixtures/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ type Fixtures = {
openProjectPage: (
id: string,
buildId?: string,
testId?: string
testId?: string,
) => Promise<ProjectPage>;
openTestVariationListPage: (
projectId: string
projectId: string,
) => Promise<TestVariationListPage>;
openTestVariationDetailsPage: (
id: string
id: string,
) => Promise<TestVariationDetailsPage>;
projectListPage: ProjectListPage;
profilePage: ProfilePage;
Expand Down Expand Up @@ -106,8 +106,8 @@ export const test = base.extend<Fixtures>({
apiKey: "ASJDHGAKJSDGASD",
role: "admin",
token: "eyJsgOE8Bw2bFwhZAugRRGm8U",
})
)
}),
),
);

await use();
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/test/projec.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ test("can download images", async ({ openProjectPage, page }) => {
await projectPage.modal.confirmBtn.click();

await expect(projectPage.notification.message).toHaveText(
"2 test runs processed."
"2 test runs processed.",
);
});
Loading

0 comments on commit 470d31a

Please sign in to comment.