currency-converter/src/app/currency-converter/components/currency-converter/currency-converter.componen...

26 lines
706 B
TypeScript

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CurrencyConverterComponent } from './currency-converter.component';
describe('CurrencyConverterComponent', () => {
let component: CurrencyConverterComponent;
let fixture: ComponentFixture<CurrencyConverterComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CurrencyConverterComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CurrencyConverterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});