Skip to content

Commit

Permalink
invert truthiness
Browse files Browse the repository at this point in the history
  • Loading branch information
etanb committed Sep 7, 2024
1 parent 626c5f8 commit 22ae906
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ test.describe(
});

test("downloads the file", async ({ dailyDataPage, isMockDisabled }) => {
test.skip(isMockDisabled, "Mocks are ENABLED, skipping 'downloads the file' test");
test.skip(!isMockDisabled, "Mocks are ENABLED, skipping 'downloads the file' test");

Check warning on line 377 in frontend-react/e2e/spec/chromium-only/authenticated/daily-data-page-user-flow.spec.ts

View workflow job for this annotation

GitHub Actions / Lint

Unexpected use of the `.skip()` annotation
// Sort by File available until, but they're in ASCENDING order
await dailyDataPage.page.getByRole("button", { name: "File available until" }).click();
await dailyDataPage.page.locator(".usa-table tbody").waitFor({ state: "visible" });
Expand Down

0 comments on commit 22ae906

Please sign in to comment.