wahlrecht-frontend/src/app/messages/messages.service.spec.ts

17 lines
363 B
TypeScript

import {TestBed} from '@angular/core/testing';
import {MessagesService} from './messages.service';
describe('MessagesService', () => {
let service: MessagesService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(MessagesService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});