Skip to content

Commit

Permalink
Merge pull request #2483 from koddsson/skip-flaky-test-in-windows
Browse files Browse the repository at this point in the history
Increase timeout for serialise/deserialise tests
  • Loading branch information
koddsson authored Oct 16, 2023
2 parents a363710 + 186e58f commit d0959dc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/browser-logs/test/serialize-deserialize.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ import { deserialize } from '../src/deserialize';
const serializeScript = fs.readFileSync(require.resolve('../dist/serialize.js'), 'utf-8');
const defaultOptions = { browserRootDir: __dirname, cwd: __dirname };

describe('serialize deserialize', () => {
describe('serialize deserialize', function () {
this.timeout(10000);

let browser: Browser;
let page: Page;
before(async () => {
Expand Down

0 comments on commit d0959dc

Please sign in to comment.