mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
17 lines
341 B
TypeScript
17 lines
341 B
TypeScript
|
import { TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { ModalService } from './modal.service';
|
||
|
|
||
|
describe('ModalService', () => {
|
||
|
let service: ModalService;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
TestBed.configureTestingModule({});
|
||
|
service = TestBed.inject(ModalService);
|
||
|
});
|
||
|
|
||
|
it('should be created', () => {
|
||
|
expect(service).toBeTruthy();
|
||
|
});
|
||
|
});
|