Skip to content

Commit

Permalink
tsv files
Browse files Browse the repository at this point in the history
  • Loading branch information
testlabauto committed Jan 8, 2025
1 parent 8d2adc8 commit 8b32428
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/e2e/tests/data-explorer/data-explorer-headless.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,18 @@ test.describe('Headless Data Explorer - Large Data Frame', {
test('Verifies headless data explorer functionality with large csv file [C938894]', async function ({ app, logger }) {
await testBody(app, logger, 'flights.csv');
});

test('Verifies headless data explorer functionality with large gzipped csv file [C1137087]', async function ({ app, logger }) {
await testBody(app, logger, 'flights.csv.gz');
});

test('Verifies headless data explorer functionality with large tsv file [C1137088]', async function ({ app, logger }) {
await testBody(app, logger, 'flights.tsv');
});

test('Verifies headless data explorer functionality with large gzipped tsv file [C1137089]', async function ({ app, logger }) {
await testBody(app, logger, 'flights.tsv.gz');
});
});

async function testBody(app: Application, logger: Logger, fileName: string) {
Expand Down

0 comments on commit 8b32428

Please sign in to comment.