From 4e8a169646a80a09e52c1fd68c39f758d1942227 Mon Sep 17 00:00:00 2001 From: William Cheng <wing328hk@gmail.com> Date: Sat, 18 Mar 2023 20:37:52 +0800 Subject: [PATCH] increase timeout --- .../client/petstore/typescript/tests/jquery/test-runner.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/openapi3/client/petstore/typescript/tests/jquery/test-runner.ts b/samples/openapi3/client/petstore/typescript/tests/jquery/test-runner.ts index 7a08e997835..6f958ffbf65 100644 --- a/samples/openapi3/client/petstore/typescript/tests/jquery/test-runner.ts +++ b/samples/openapi3/client/petstore/typescript/tests/jquery/test-runner.ts @@ -7,7 +7,7 @@ const qunitArgs = { // Path to qunit tests suite targetUrl: `file://${path.join(__dirname, '../index.html')}`, // (optional, 30000 by default) global timeout for the tests suite - timeout: 10000, + timeout: 30000, // (optional, false by default) should the browser console be redirected or not redirectConsole: true, puppeteerArgs: [ '--disable-web-security'] @@ -26,4 +26,4 @@ runQunitPuppeteer(qunitArgs) .catch((ex: any) => { console.error(ex); process.exit(2) - }); \ No newline at end of file + }); -- GitLab