17 lines
363 B
TypeScript
17 lines
363 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { ApiChatService } from './api-chat.service';
|
|
|
|
describe('ApiChatService', () => {
|
|
let service: ApiChatService;
|
|
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({});
|
|
service = TestBed.inject(ApiChatService);
|
|
});
|
|
|
|
it('should be created', () => {
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|