-
-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update windows images and add docker parameters (#244)
* Update windows images and add docker parameters * Run yarn-audit-fix
- Loading branch information
1 parent
7b6d529
commit 8bb2cdb
Showing
12 changed files
with
2,037 additions
and
1,472 deletions.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "unity-test-runner", | ||
"version": "2.0.0", | ||
"version": "3.0.0", | ||
"description": "Run tests for any Unity project.", | ||
"main": "dist/index.js", | ||
"repository": "[email protected]:game-ci/unity-test-runner.git", | ||
|
@@ -24,7 +24,7 @@ | |
}, | ||
"devDependencies": { | ||
"@types/jest": "^26.0.15", | ||
"@types/node": "^14.14.9", | ||
"@types/node": "^20.8.10", | ||
"@types/semver": "^7.3.5", | ||
"@typescript-eslint/parser": "^5.9.0", | ||
"@vercel/ncc": "^0.33.1", | ||
|
@@ -37,11 +37,14 @@ | |
"husky": "^7.0.4", | ||
"jest": "^26.6.3", | ||
"jest-circus": "^26.6.3", | ||
"jest-fail-on-console": "^3.0.2", | ||
"js-yaml": "^3.14.0", | ||
"lint-staged": "^12.1.2", | ||
"prettier": "^2.2.1", | ||
"ts-jest": "^26.4.4", | ||
"typescript": "^4.1.5" | ||
"ts-node": "10.4.0", | ||
"typescript": "^4.1.5", | ||
"yarn-audit-fix": "^9.3.8" | ||
}, | ||
"lint-staged": { | ||
"*.{js,jsx,ts,tsx}": [ | ||
|
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import failOnConsole from 'jest-fail-on-console'; | ||
|
||
// Fail when console logs something inside a test - use spyOn instead | ||
failOnConsole({ | ||
shouldFailOnWarn: true, | ||
shouldFailOnError: true, | ||
shouldFailOnLog: true, | ||
shouldFailOnAssert: true, | ||
}); |
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
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
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
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
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
Oops, something went wrong.