From b541dddb0d8fb0160d73047a87cc72cc4a0bde87 Mon Sep 17 00:00:00 2001 From: Zahra Masoumi Date: Fri, 9 Aug 2024 14:27:53 +0330 Subject: [PATCH] add dir for integration tests --- .../app.component.integration.spec.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 phase11/book-store/src/integration-tests/app.component.integration.spec.ts diff --git a/phase11/book-store/src/integration-tests/app.component.integration.spec.ts b/phase11/book-store/src/integration-tests/app.component.integration.spec.ts new file mode 100644 index 0000000..cd79ed4 --- /dev/null +++ b/phase11/book-store/src/integration-tests/app.component.integration.spec.ts @@ -0,0 +1,10 @@ +import { TestBed } from '@angular/core/testing'; +import '@testing-library/jest-dom'; + +describe('AppComponent', () => { + beforeEach(async () => { + await TestBed.configureTestingModule({}).compileComponents(); + }); + + test(`should have the 'book-store' title`, () => {}); +});