b5b3e60e81
- Fixes white page at 'legalnotice' and 'privacypolicy' - Fixes the button to collapse the sidenav - Fixes a too long text in the headbar - Reworked the login data service: * make order of operations clear * prevent setting invalid data into the storage
18 lines
492 B
TypeScript
18 lines
492 B
TypeScript
import { TestBed, inject } from '@angular/core/testing';
|
|
|
|
import { UpdateService } from './update.service';
|
|
import { E2EImportsModule } from 'e2e-imports.module';
|
|
|
|
describe('UpdateService', () => {
|
|
beforeEach(() =>
|
|
TestBed.configureTestingModule({
|
|
imports: [E2EImportsModule],
|
|
providers: [UpdateService]
|
|
})
|
|
);
|
|
|
|
it('should be created', inject([UpdateService], (service: UpdateService) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|