angular-t9n
Version:
A translation tool for Angular i18n
25 lines (19 loc) • 674 B
text/typescript
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { SourceOrphanComponent } from './source-orphan.component';
describe('SourceOrphanComponent', () => {
let component: SourceOrphanComponent;
let fixture: ComponentFixture<SourceOrphanComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [SourceOrphanComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(SourceOrphanComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});