This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
Angular_App/src/app/services/api-chat.service.spec.ts
2022-10-22 15:20:59 +10:00

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();
});
});