diff --git a/browser/src/DownloadsPage/GnomadV4Downloads.tsx b/browser/src/DownloadsPage/GnomadV4Downloads.tsx index 2832605ca..ecc8973ca 100644 --- a/browser/src/DownloadsPage/GnomadV4Downloads.tsx +++ b/browser/src/DownloadsPage/GnomadV4Downloads.tsx @@ -102,7 +102,7 @@ const GnomadV4Downloads = () => { v4 Downloads - The gnomAD v4.0.0 data set contains data from 730,947 exomes and 76,215 whole genomes, all + The gnomAD v4.1.0 data set contains data from 730,947 exomes and 76,215 whole genomes, all mapped to the GRCh38 reference sequence. diff --git a/browser/src/DownloadsPage/__snapshots__/DownloadsPage.spec.tsx.snap b/browser/src/DownloadsPage/__snapshots__/DownloadsPage.spec.tsx.snap index 9198dfb99..8c7577859 100644 --- a/browser/src/DownloadsPage/__snapshots__/DownloadsPage.spec.tsx.snap +++ b/browser/src/DownloadsPage/__snapshots__/DownloadsPage.spec.tsx.snap @@ -647,7 +647,7 @@ exports[`Downloads Page has no unexpected changes 1`] = `

- The gnomAD v4.0.0 data set contains data from 730,947 exomes and 76,215 whole genomes, all mapped to the GRCh38 reference sequence. + The gnomAD v4.1.0 data set contains data from 730,947 exomes and 76,215 whole genomes, all mapped to the GRCh38 reference sequence.

{ await expect(page.getByText('Loading gene')).toHaveCount(0) await expect( - page.getByText('PCSK9 proprotein convertase subtilisin/kexin type 9DatasetgnomAD v4.0.') + page.getByText('PCSK9 proprotein convertase subtilisin/kexin type 9DatasetgnomAD v4.1.') ).toBeVisible({ timeout: 10_000 }) }) diff --git a/tests/e2e/RegionPage.playwright.spec.ts b/tests/e2e/RegionPage.playwright.spec.ts index fc0317ed6..002969d3c 100644 --- a/tests/e2e/RegionPage.playwright.spec.ts +++ b/tests/e2e/RegionPage.playwright.spec.ts @@ -14,7 +14,7 @@ test.describe('Region page', () => { test('region query', async () => { await expect(page.getByText('Loading region')).toHaveCount(0) await expect( - page.getByText('1-55050934-55053465ChangeDatasetgnomAD v4.0.0GRCh38gnomAD v4.0.0807,162') + page.getByText('1-55050934-55053465ChangeDatasetgnomAD v4.1.0GRCh38gnomAD v4.1.0807,162') ).toBeVisible({ timeout: 20_000 }) }) diff --git a/tests/e2e/TranscriptPage.playwright.spec.ts b/tests/e2e/TranscriptPage.playwright.spec.ts index d85158f64..d2983c941 100644 --- a/tests/e2e/TranscriptPage.playwright.spec.ts +++ b/tests/e2e/TranscriptPage.playwright.spec.ts @@ -16,7 +16,7 @@ test.describe('Transcript page', () => { test('transcript query', async () => { await expect(page.getByText('Loading transcript')).toHaveCount(0) - await expect(page.getByText('Transcript: ENST00000302118.5DatasetgnomAD v4.0.')).toBeVisible({ + await expect(page.getByText('Transcript: ENST00000302118.5DatasetgnomAD v4.1.')).toBeVisible({ timeout: 10_000, }) })