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