From 14d818fcd99a22abca91272dca0b528b175f46a6 Mon Sep 17 00:00:00 2001 From: Matteo Collina Date: Mon, 25 Nov 2024 13:43:49 +0100 Subject: [PATCH] concurrency to 1 Signed-off-by: Matteo Collina --- package.json | 2 +- test/service-restarted.test.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e344a3a..2643346 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "description": "An Undici interceptor that routes requests over a worker thread", "main": "index.js", "scripts": { - "test": "eslint && borp --coverage --check-coverage" + "test": "eslint && borp --coverage --check-coverage --concurrency=1" }, "keywords": [ "undici", diff --git a/test/service-restarted.test.js b/test/service-restarted.test.js index 16169e0..b311ffd 100644 --- a/test/service-restarted.test.js +++ b/test/service-restarted.test.js @@ -74,7 +74,7 @@ test('service restart with network / 1', async (t) => { } }) -test.only('service restart with network / 2', async (t) => { +test('service restart with network / 2', async (t) => { const composer = new Worker(join(__dirname, 'fixtures', 'composer.js'), { workerData: { name: 'composer' }, })