17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
import { TestBed } from "@angular/core/testing";
|
|
|
|
import { CartService } from "./cart-service";
|
|
|
|
describe("CartService", () => {
|
|
let service: CartService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(CartService);
|
|
});
|
|
|
|
it("should be created", () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|