24 lines
610 B
TypeScript
24 lines
610 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { ScanLoadingScreen } from './scan-loading-screen';
|
|
|
|
describe('ScanLoadingScreen', () => {
|
|
let component: ScanLoadingScreen;
|
|
let fixture: ComponentFixture<ScanLoadingScreen>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
imports: [ScanLoadingScreen]
|
|
})
|
|
.compileComponents();
|
|
|
|
fixture = TestBed.createComponent(ScanLoadingScreen);
|
|
component = fixture.componentInstance;
|
|
await fixture.whenStable();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|