From 2353e8d9080254747ab711da902fa3abcad886f2 Mon Sep 17 00:00:00 2001 From: Stefan Pfaffel Date: Sun, 17 Sep 2023 21:29:30 +0200 Subject: [PATCH] test delay --- test/index.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.spec.js b/test/index.spec.js index 5590905..ddac349 100644 --- a/test/index.spec.js +++ b/test/index.spec.js @@ -4,7 +4,7 @@ const { fetchSpans } = require('./simple-fetch.js') const simpleFetch = require('./simple-fetch.js') const testServer = require('./test-server.js') -const WAIT_TIME = process.env.GITHUB_ACTIONS ? 5_000 : 0 +const WAIT_TIME = process.env.GITHUB_ACTIONS ? 2_500 : 0 const WAIT_FOR_SPAN_PROCESSING = () => new Promise((resolve) => setTimeout(resolve, WAIT_TIME)) describe('Tracing', () => {