Skip to content

Commit

Permalink
enable ground truth and predictions in tagger e2e test
Browse files Browse the repository at this point in the history
  • Loading branch information
sashankaryal committed Jan 14, 2025
1 parent 7a2a99a commit 9eeac97
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion e2e-pw/src/oss/specs/smoke-tests/tagger.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ test.describe("tag", () => {
});
});

test.beforeEach(async ({ page, fiftyoneLoader }) => {
test.beforeEach(async ({ page, fiftyoneLoader, sidebar }) => {
await fiftyoneLoader.waitUntilGridVisible(page, datasetName);
await sidebar.clickFieldCheckbox("ground_truth");
await sidebar.clickFieldCheckbox("predictions");
});

test("sample tag and label tag loads correct aggregation number on default view", async ({
Expand Down

0 comments on commit 9eeac97

Please sign in to comment.