376f4e2a31
- If the previously selected theme is not available the default OpenSlides theme will be displayed. - Before the current selected theme was loaded, no theme is displayed.
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
import { TestBed } from '@angular/core/testing';
|
|
|
|
import { SpinnerService } from './spinner.service';
|
|
|
|
describe('SpinnerService', () => {
|
|
beforeEach(() => TestBed.configureTestingModule({}));
|
|
|
|
it('should be created', () => {
|
|
const service: SpinnerService = TestBed.get(SpinnerService);
|
|
expect(service).toBeTruthy();
|
|
});
|
|
});
|