All files / src/app/shared/components/promotion/promotion-remove promotion-remove.component.ts

83.33% Statements 5/6
75% Branches 3/4
66.66% Functions 2/3
83.33% Lines 5/6

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 272x     2x               2x         2x     2x              
import { ChangeDetectionStrategy, Component, Input, OnInit } from '@angular/core';
import { Observable } from 'rxjs';
 
import { CheckoutFacade } from 'ish-core/facades/checkout.facade';
import { BasketView } from 'ish-core/models/basket/basket.model';
 
@Component({
  selector: 'ish-promotion-remove',
  templateUrl: './promotion-remove.component.html',
  changeDetection: ChangeDetectionStrategy.OnPush,
})
export class PromotionRemoveComponent implements OnInit {
  basket$: Observable<BasketView>;
 
  @Input({ required: true }) code: string;
 
  constructor(private checkoutFacade: CheckoutFacade) {}
 
  ngOnInit() {
    this.basket$ = this.checkoutFacade.basket$;
  }
 
  removePromotion() {
    this.checkoutFacade.removePromotionCodeFromBasket(this.code);
  }
}