This commit is contained in:
Olu Amey
2020-09-06 14:48:44 -04:00
parent 6230abe941
commit d2b82ac960
2 changed files with 25 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { BlackConnectService } from './black-connect.service';
describe('BlackConnectService', () => {
let service: BlackConnectService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(BlackConnectService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});
+9
View File
@@ -0,0 +1,9 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class BlackConnectService {
constructor() { }
}