All files / src/app/extensions/wishlists/pages/shared-wishlist shared-wishlist-page.component.ts

100% Statements 7/7
75% Branches 3/4
100% Functions 1/1
100% Lines 6/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 161x   1x             1x 1x 1x   1x    
import { ChangeDetectionStrategy, Component } from '@angular/core';
 
import { WishlistsFacade } from '../../facades/wishlists.facade';
 
@Component({
  selector: 'ish-wishlist-page',
  templateUrl: './shared-wishlist-page.component.html',
  changeDetection: ChangeDetectionStrategy.OnPush,
})
export class SharedWishlistPageComponent {
  wishlist$ = this.wishlistsFacade.sharedWishlist$;
  wishlistLoading$ = this.wishlistsFacade.wishlistLoading$;
 
  constructor(private wishlistsFacade: WishlistsFacade) {}
}