AltitudeWeb/frontend/src/app/theme/theme.service.spec.ts

17 lines
348 B
TypeScript
Raw Normal View History

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