Increase ava test timeout to 5 minutes for test-extra and lint-test-repos scripts.

This commit is contained in:
David Anson 2021-01-10 20:50:35 -08:00
parent 49945d6601
commit cc61de8f2b
2 changed files with 3 additions and 3 deletions

View file

@ -24,11 +24,11 @@
"declaration": "npm run build-declaration && npm run test-declaration",
"example": "cd example && node standalone.js && grunt markdownlint --force && gulp markdownlint",
"lint": "eslint --max-warnings 0 .",
"lint-test-repos": "ava test/markdownlint-test-repos.js",
"lint-test-repos": "ava --timeout=5m test/markdownlint-test-repos.js",
"test": "ava test/markdownlint-test.js test/markdownlint-test-custom-rules.js test/markdownlint-test-helpers.js test/markdownlint-test-result-object.js test/markdownlint-test-scenarios.js",
"test-cover": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 npm test",
"test-declaration": "cd example/typescript && tsc && node type-check.js",
"test-extra": "ava --timeout=3m test/markdownlint-test-extra.js"
"test-extra": "ava --timeout=5m test/markdownlint-test-extra.js"
},
"engines": {
"node": ">=10"