mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
5b5c165e10
* Define matchers to test promise fulfillment These are useful for validating that promises depend on other events prior to fulfilling. * Expose custom matchers to jest projects Team-specific projects are not touched here to try and reduce review burden. * Block browser local operations awaiting reseed This should closes a narrow race condition resulting from storage operations during a reseed event. * Import from barrel file This might fix the failing test, but I'm not sure _why_ * Document helper methods * Validate as few properties as possible per test * Simplify expected value representation * Allow waiting in promise matchers * Specify resolution times in promise orchestration tests. * Test behavior triggering multiple reseeds. * Fix typo * Avoid testing implementation details * Clear reseed on startup in case a previous process was aborted in the middle of a reseed. * Correct formatting
50 lines
2.0 KiB
JSON
50 lines
2.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "ES2020",
|
|
"target": "ES2016",
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"lib": ["ES2021.String"],
|
|
"paths": {
|
|
"@bitwarden/admin-console": ["../../libs/admin-console/src"],
|
|
"@bitwarden/angular/*": ["../../libs/angular/src/*"],
|
|
"@bitwarden/auth/common": ["../../libs/auth/src/common"],
|
|
"@bitwarden/auth/angular": ["../../libs/auth/src/angular"],
|
|
"@bitwarden/billing": ["../../libs/billing/src"],
|
|
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
|
"@bitwarden/components": ["../../libs/components/src"],
|
|
"@bitwarden/generator-components": ["../../libs/tools/generator/components/src"],
|
|
"@bitwarden/generator-core": ["../../libs/tools/generator/core/src"],
|
|
"@bitwarden/generator-history": ["../../libs/tools/generator/extensions/history/src"],
|
|
"@bitwarden/generator-legacy": ["../../libs/tools/generator/extensions/legacy/src"],
|
|
"@bitwarden/generator-navigation": ["../../libs/tools/generator/extensions/navigation/src"],
|
|
"@bitwarden/vault-export-core": [
|
|
"../../libs/tools/export/vault-export/vault-export-core/src"
|
|
],
|
|
"@bitwarden/vault-export-ui": ["../../libs/tools/export/vault-export/vault-export-ui/src"],
|
|
"@bitwarden/importer/core": ["../../libs/importer/src"],
|
|
"@bitwarden/importer/ui": ["../../libs/importer/src/components"],
|
|
"@bitwarden/platform": ["../../libs/platform/src"],
|
|
"@bitwarden/send-ui": ["../../libs/tools/send/send-ui/src"],
|
|
"@bitwarden/vault": ["../../libs/vault/src"]
|
|
},
|
|
"useDefineForClassFields": false
|
|
},
|
|
"angularCompilerOptions": {
|
|
"strictTemplates": true,
|
|
"preserveWhitespaces": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"../../libs/common/src/platform/services/**/*.worker.ts",
|
|
"../../libs/common/src/autofill/constants",
|
|
"../../libs/common/custom-matchers.d.ts"
|
|
]
|
|
}
|