From 445c28fabc5fbdf9c3bb3341fb70660a3530f6ad Mon Sep 17 00:00:00 2001 From: Stefan Stojanovic Date: Mon, 24 Jul 2023 12:38:47 +0200 Subject: [PATCH] test: increase mocha timeout (#2887) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 31c8a25d79..d861261002 100644 --- a/package.json +++ b/package.json @@ -45,6 +45,6 @@ }, "scripts": { "lint": "standard */*.js test/**/*.js", - "test": "npm run lint && mocha --reporter=test/reporter.js test/test-download.js test/test-*" + "test": "npm run lint && mocha --timeout 15000 --reporter=test/reporter.js test/test-download.js test/test-*" } }