Skip to content

Commit

Permalink
test: renamed 'testIndexExportDetails' to 'testIndexExportSummary' (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jpaten committed Nov 6, 2024
1 parent afc61ae commit fe9b3ed
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions explorer/e2e/anvil/anvil-index-export-button.spec.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import test from "@playwright/test";
import {
testIndexExportDetails,
testIndexExportSummary,
testIndexExportWorkflow,
} from "../testFunctions";
import { ANVIL_TABS } from "./anvil-tabs";
Expand All @@ -11,8 +11,8 @@ test("Smoke test File Manifest Request index export workflow on the Diles tab",
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 ({
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 testIndexExportDetails(page, ANVIL_TABS.BIOSAMPLES);
await testIndexExportSummary(page, ANVIL_TABS.BIOSAMPLES);
});
2 changes: 1 addition & 1 deletion explorer/e2e/testFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ export async function testIndexExportWorkflow(
//TODO: validate the results from the downnload
}

export async function testIndexExportDetails(
export async function testIndexExportSummary(
page: Page,
tab: TabDescription
): Promise<boolean> {
Expand Down

0 comments on commit fe9b3ed

Please sign in to comment.