From cf12e9e5b66a3f305157e8e762ac83066eb1b8c0 Mon Sep 17 00:00:00 2001 From: zemnmez Date: Wed, 25 May 2022 16:59:21 -0700 Subject: [PATCH] Increase svgshot timeout --- ts/cmd/svgshot/svgshot_test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/cmd/svgshot/svgshot_test.ts b/ts/cmd/svgshot/svgshot_test.ts index 4230f08a16..7441e32d5e 100644 --- a/ts/cmd/svgshot/svgshot_test.ts +++ b/ts/cmd/svgshot/svgshot_test.ts @@ -3,6 +3,8 @@ import tmp from 'tmp'; import fs from 'fs/promises'; import { runfiles } from '@bazel/runfiles'; +jest.setTimeout(30000); + describe('svgshot', () => { it('should render a test URL', async () => { const [target, cleanup] = await new Promise<[string, () => void]>(