aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/@core-xds/services/alert.service.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/app/@core-xds/services/alert.service.spec.ts')
-rw-r--r--webapp/src/app/@core-xds/services/alert.service.spec.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/webapp/src/app/@core-xds/services/alert.service.spec.ts b/webapp/src/app/@core-xds/services/alert.service.spec.ts
new file mode 100644
index 0000000..b3d364c
--- /dev/null
+++ b/webapp/src/app/@core-xds/services/alert.service.spec.ts
@@ -0,0 +1,15 @@
+import { TestBed, inject } from '@angular/core/testing';
+
+import { AlertService } from './alert.service';
+
+describe('AlertService', () => {
+ beforeEach(() => {
+ TestBed.configureTestingModule({
+ providers: [AlertService]
+ });
+ });
+
+ it('should be created', inject([AlertService], (service: AlertService) => {
+ expect(service).toBeTruthy();
+ }));
+});