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