-
Notifications
You must be signed in to change notification settings - Fork 507
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(ci): Increase timeout for gh action runs
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ | |
"clean": "rimraf dist fixtures/*/routes.ts fixtures/*/customRoutes.ts", | ||
"pretest": "yarn clean && cross-env NODE_ENV=tsoa_test ts-node --require tsconfig-paths/register ./prepare.ts", | ||
"loading-msg-for-tests": "echo '... starting a test run to ensure quality. Note this takes some time as tests do not run in parallel (by design) ...' ", | ||
"test": "node ../ensureYarn.js && tsc -b tsconfig.build.json && yarn loading-msg-for-tests && cross-env NODE_ENV=tsoa_test mocha '**/*.spec.ts' --exit --require ts-node/register --require tsconfig-paths/register --timeout 5000", | ||
"test": "node ../ensureYarn.js && tsc -b tsconfig.build.json && yarn loading-msg-for-tests && cross-env NODE_ENV=tsoa_test mocha '**/*.spec.ts' --exit --require ts-node/register --require tsconfig-paths/register --timeout 10000", | ||
"tsc": "tsc -b" | ||
}, | ||
"author": "Luke Autry <[email protected]> (http://www.lukeautry.com)", | ||
|