Skip to content

Commit

Permalink
Update download.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
theosanderson authored Feb 25, 2025
1 parent bd73224 commit c0bdec6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions integration-tests/tests/specs/features/download.spec.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const { test, expect } = require('@playwright/test');
const fs = require('fs');

test('Download flow', async ({ page }) => {
console.log('Waiting for 20 seconds before starting the test...');
await page.waitForTimeout(20000);
test('Download metadata and check number of cols', async ({ page }) => {
console.log('Waiting for 10 seconds before starting the test...');
await page.waitForTimeout(10000);
console.log('Continuing with test after delay');

await page.goto('/');
Expand All @@ -26,4 +26,4 @@ test('Download flow', async ({ page }) => {

expect(fields).toHaveLength(8);
console.log(`Found ${fields.length} fields in the first line of the TSV`);
});
});

0 comments on commit c0bdec6

Please sign in to comment.