aboutsummaryrefslogtreecommitdiff
path: root/src/app/api.service.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/api.service.spec.ts')
-rw-r--r--src/app/api.service.spec.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/app/api.service.spec.ts b/src/app/api.service.spec.ts
new file mode 100644
index 0000000..65b6c71
--- /dev/null
+++ b/src/app/api.service.spec.ts
@@ -0,0 +1,15 @@
1import { TestBed, inject } from '@angular/core/testing';
2
3import { ApiService } from './api.service';
4
5describe('ApiService', () => {
6 beforeEach(() => {
7 TestBed.configureTestingModule({
8 providers: [ApiService]
9 });
10 });
11
12 it('should be created', inject([ApiService], (service: ApiService) => {
13 expect(service).toBeTruthy();
14 }));
15});