Skip to content
Snippets Groups Projects
home.component.spec.ts 595 B
Newer Older
  • Learn to ignore specific revisions
  • import { async, ComponentFixture, TestBed } from '@angular/core/testing';
    
    import { HomeComponent } from './home.component';
    
    
    Tifenn Guillas's avatar
    Tifenn Guillas committed
    describe('[Static] Component: HomeComponent', () => {
    
    Tifenn Guillas's avatar
    Tifenn Guillas committed
        let component: HomeComponent;
        let fixture: ComponentFixture<HomeComponent>;
    
    Tifenn Guillas's avatar
    Tifenn Guillas committed
        beforeEach(() => {
            TestBed.configureTestingModule({
                declarations: [HomeComponent]
            });
            fixture = TestBed.createComponent(HomeComponent);
            component = fixture.componentInstance;
        });
    
    Tifenn Guillas's avatar
    Tifenn Guillas committed
        it('should create the component', () => {
            expect(component).toBeTruthy();
        });