| 9 | styleUrls: ['./app.component.css'] |
| 10 | }) |
| 11 | export class AppComponent { |
| 12 | pageTitle = 'Star Wars Vehicle Sales'; |
| 13 | |
| 14 | cartCount$ = this.cartService.cartItems$.pipe( |
| 15 | map(items => items.length) |
| 16 | ); |
| 17 | |
| 18 | constructor(private cartService: CartService) {} |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected