From 00ab8eabbc1ed6bfbe80f80435f458d67325d329 Mon Sep 17 00:00:00 2001 From: OZGCloud <ozgcloud@mgm-tp.com> Date: Wed, 10 Nov 2021 15:34:56 +0100 Subject: [PATCH] add test for app.module --- goofy-client/apps/goofy/src/app/app.module.spec.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 goofy-client/apps/goofy/src/app/app.module.spec.ts diff --git a/goofy-client/apps/goofy/src/app/app.module.spec.ts b/goofy-client/apps/goofy/src/app/app.module.spec.ts new file mode 100644 index 0000000000..8e6c100526 --- /dev/null +++ b/goofy-client/apps/goofy/src/app/app.module.spec.ts @@ -0,0 +1,14 @@ +import { TestBed } from "@angular/core/testing"; +import { AppModule } from "./app.module"; + +describe('AppModule', () => { + beforeEach(() => { + TestBed.configureTestingModule({ + imports: [AppModule] + }) + }); + + it('should create', () => { + expect(AppModule).toBeDefined(); + }); +}); \ No newline at end of file -- GitLab