-
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.
- Loading branch information
Showing
6 changed files
with
88 additions
and
51 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
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 |
---|---|---|
@@ -1,18 +1,27 @@ | ||
import test from "@playwright/test"; | ||
import { | ||
testBulkDownloadIndexExportWorkflow, | ||
testIndexExportSummary, | ||
testIndexExportWorkflow, | ||
} from "../testFunctions"; | ||
import { ANVIL_TABS } from "./anvil-tabs"; | ||
|
||
test("Smoke test File Manifest Request index export workflow on the Files tab", async ({ | ||
page, | ||
}) => { | ||
await testIndexExportWorkflow(page, ANVIL_TABS.FILES); | ||
const testResult = await testBulkDownloadIndexExportWorkflow( | ||
page, | ||
ANVIL_TABS.FILES | ||
); | ||
if (!testResult) { | ||
test.fail(); | ||
} | ||
}); | ||
|
||
test("Check that figures in the Selected Data Summary tab on the index export page matches figures on the index page on the BioSamples tab", async ({ | ||
page, | ||
}) => { | ||
await testIndexExportSummary(page, ANVIL_TABS.BIOSAMPLES); | ||
const testResult = await testIndexExportSummary(page, ANVIL_TABS.BIOSAMPLES); | ||
if (!testResult) { | ||
test.fail(); | ||
} | ||
}); |
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
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