1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

Use node-ts and jasmine-ts to run tests (#621)

* Use node-ts and jasmine-ts to run tests

* prettier

* Add tsconf-paths module
This commit is contained in:
Matt Gibson
2022-01-20 15:07:13 -05:00
committed by GitHub
parent cf1e483c7f
commit 19bf7c75a3
3 changed files with 222 additions and 46 deletions

View File

@@ -1,7 +1,7 @@
{
"spec_dir": "dist/spec",
"spec_files": ["common/**/*[sS]pec.js", "node/**/*[sS]pec.js", "electron/**/*[sS]pec.js"],
"helpers": ["helpers.js"],
"spec_dir": "spec",
"spec_files": ["common/**/*[sS]pec.ts", "node/**/*[sS]pec.ts", "electron/**/*[sS]pec.ts"],
"helpers": ["helpers.ts"],
"stopSpecOnExpectationFailure": false,
"random": true
}