13 lines
342 B
TypeScript
13 lines
342 B
TypeScript
|
import { TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { ThemeService } from './theme.service';
|
||
|
|
||
|
describe('ThemeService', () => {
|
||
|
beforeEach(() => TestBed.configureTestingModule({}));
|
||
|
|
||
|
it('should be created', () => {
|
||
|
const service: ThemeService = TestBed.get(ThemeService);
|
||
|
expect(service).toBeTruthy();
|
||
|
});
|
||
|
});
|