From 7c1d0f5ef60ddd31eb3a9b1b138d41272d27b0d2 Mon Sep 17 00:00:00 2001 From: Shakeel Mohamed Date: Wed, 19 Jun 2024 00:33:39 -0700 Subject: [PATCH] CI: Increase demo test timeout to 5s --- test/demo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/demo.js b/test/demo.js index 50a309f..24d47cc 100644 --- a/test/demo.js +++ b/test/demo.js @@ -4,7 +4,7 @@ const puppeteer = require("puppeteer"); const http = require("http-server"); const SERVER_PORT = 8000; -const TEST_TIMEOUT = 4000; +const TEST_TIMEOUT = 5000; const indexHTMLURL = `http://localhost:${SERVER_PORT}/index.html`; let server;