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 { ExportComponent } from './export.component';
describe('ExportComponent', () => {
let component: ExportComponent;
let fixture: ComponentFixture<ExportComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
imports: [ExportComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(ExportComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});