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