UNPKG

angular-t9n

Version:

A translation tool for Angular i18n

25 lines (19 loc) 631 B
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing'; import { OrphanComponent } from './orphan.component'; describe('OrphanComponent', () => { let component: OrphanComponent; let fixture: ComponentFixture<OrphanComponent>; beforeEach(waitForAsync(() => { TestBed.configureTestingModule({ imports: [OrphanComponent], }).compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(OrphanComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });