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