1
0
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:
Cy Okeke
2025-06-24 15:11:43 +01:00
parent f7e2d82eba
commit 8dfe6ecf0d

View File

@@ -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) {}