Skip to content

Commit

Permalink
chore: only run 100MB test
Browse files Browse the repository at this point in the history
  • Loading branch information
whimboo authored and OrKoN committed Apr 26, 2022
1 parent 548e57b commit db78cb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/evaluation.spec.ts
Expand Up @@ -383,7 +383,8 @@ describe('Evaluation specs', function () {
expect(result).toEqual([42]);
}
);
it('should transfer 100Mb of data from page to node.js', async function () {
// eslint-disable-next-line mocha/no-exclusive-tests
it.only('should transfer 100Mb of data from page to node.js', async function () {
const { page } = getTestState();

const a = await page.evaluate<() => string>(() =>
Expand Down

0 comments on commit db78cb2

Please sign in to comment.