feat(loading screen): add angular wrapper
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user