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