Files
wgenerator/src/app/modules/shows/services/show-data.service.spec.ts
2021-05-21 20:17:26 +02:00

13 lines
353 B
TypeScript

import {TestBed} from '@angular/core/testing';
import {ShowDataService} from './show-data.service';
describe('ShowDataService', () => {
beforeEach(() => void TestBed.configureTestingModule({}));
it('should be created', () => {
const service: ShowDataService = TestBed.inject(ShowDataService);
void expect(service).toBeTruthy();
});
});