UNPKG

angular-t9n

Version:

A translation tool for Angular i18n

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