mirror of
https://github.com/bitwarden/browser
synced 2025-01-22 17:22:56 +01:00
Fix failing tests (#3374)
* Fix trial-initation test Co-authored-by: Michał Chęciński <michal.checinski@outlook.com>
This commit is contained in:
parent
bb70113279
commit
e0ae1bb738
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@ -43,4 +43,6 @@ jobs:
|
||||
run: npm ci
|
||||
|
||||
- name: Run tests
|
||||
run: npm run test
|
||||
run: |
|
||||
export NODE_OPTIONS=--max_old_space_size=6144
|
||||
npm run test
|
||||
|
@ -18,6 +18,8 @@ import { StateService as BaseStateService } from "@bitwarden/common/abstractions
|
||||
import { PlanType } from "@bitwarden/common/enums/planType";
|
||||
import { MasterPasswordPolicyOptions } from "@bitwarden/common/models/domain/masterPasswordPolicyOptions";
|
||||
|
||||
import { RouterService } from "../../core";
|
||||
|
||||
import { TrialInitiationComponent } from "./trial-initiation.component";
|
||||
import { VerticalStepperComponent } from "./vertical-stepper/vertical-stepper.component";
|
||||
|
||||
@ -84,6 +86,10 @@ describe("TrialInitiationComponent", () => {
|
||||
provide: VerticalStepperComponent,
|
||||
useClass: VerticalStepperStubComponent,
|
||||
},
|
||||
{
|
||||
provide: RouterService,
|
||||
useClass: Substitute.for<RouterService>(),
|
||||
},
|
||||
],
|
||||
schemas: [NO_ERRORS_SCHEMA], // Allows child components to be ignored (such as register component)
|
||||
}).compileComponents();
|
||||
|
@ -1,3 +1,10 @@
|
||||
{
|
||||
"extends": "../../apps/web/tsconfig"
|
||||
"extends": "../../apps/web/tsconfig",
|
||||
"compilerOptions": {
|
||||
"paths": {
|
||||
"@bitwarden/common/*": ["../../libs/common/src/*"],
|
||||
"@bitwarden/angular/*": ["../../libs/angular/src/*"],
|
||||
"@bitwarden/components": ["../../libs/components/src"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user