mirror of
https://github.com/bitwarden/browser
synced 2026-02-06 19:53:59 +00:00
Resolve the failing unit test
This commit is contained in:
@@ -17,21 +17,21 @@ import { PricingCalculationService } from "./pricing-calculation.service";
|
||||
imports: [SharedModule],
|
||||
})
|
||||
export class CostSummaryComponent {
|
||||
@Input() organization: Organization;
|
||||
@Input() sub: OrganizationSubscriptionResponse;
|
||||
@Input() selectedPlan: PlanResponse;
|
||||
@Input() selectedInterval: number;
|
||||
@Input() discountPercentageFromSub: number;
|
||||
@Input() discountPercentage: number;
|
||||
@Input() acceptingSponsorship: boolean;
|
||||
@Input() additionalServiceAccount: number;
|
||||
@Input() organization?: Organization;
|
||||
@Input() sub?: OrganizationSubscriptionResponse;
|
||||
@Input() selectedPlan?: PlanResponse;
|
||||
@Input() selectedInterval?: number;
|
||||
@Input() discountPercentageFromSub?: number;
|
||||
@Input() discountPercentage?: number;
|
||||
@Input() acceptingSponsorship?: boolean;
|
||||
@Input() additionalServiceAccount?: number;
|
||||
@Input() planIntervals = PlanInterval;
|
||||
@Input() totalOpened: boolean;
|
||||
@Input() storageGb: number;
|
||||
@Input() isSecretsManagerTrial: boolean;
|
||||
@Input() estimatedTax: number;
|
||||
@Input() totalOpened?: boolean;
|
||||
@Input() storageGb?: number;
|
||||
@Input() isSecretsManagerTrial?: boolean;
|
||||
@Input() estimatedTax?: number;
|
||||
discount = 0;
|
||||
secretsManagerTotal: number;
|
||||
secretsManagerTotal?: number;
|
||||
|
||||
constructor(public pricingCalculationService: PricingCalculationService) {}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user