test: increase mocha timeout (#2887)

This commit is contained in:
Stefan Stojanovic 2023-07-24 12:38:47 +02:00 committed by GitHub
parent 1bfb083f8b
commit 445c28fabc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,6 +45,6 @@
}, },
"scripts": { "scripts": {
"lint": "standard */*.js test/**/*.js", "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-*"
} }
} }