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