-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: first draft index export tests (#4117)
- Loading branch information
Showing
4 changed files
with
210 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import test from "@playwright/test"; | ||
import { | ||
testIndexExportDetails, | ||
testIndexExportWorkflow, | ||
} from "../testFunctions"; | ||
import { ANVIL_TABS } from "./anvil-tabs"; | ||
|
||
test("Check that the export button on the index page functions as expected, on the Files tab", async ({ | ||
page, | ||
}) => { | ||
await testIndexExportWorkflow(page, ANVIL_TABS.FILES); | ||
}); | ||
|
||
test("Check that figures in the details tab on the index export page matches figures on the index page, on the BioSamples tab", async ({ | ||
page, | ||
}) => { | ||
await testIndexExportDetails(page, ANVIL_TABS.BIOSAMPLES); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters