2017-04-15 19:04:49 +02:00
|
|
|
import {AppComponent} from './app.component';
|
|
|
|
import {async, ComponentFixture, TestBed} from '@angular/core/testing';
|
2017-07-25 22:09:21 +02:00
|
|
|
import {FormsModule} from '@angular/forms';
|
2017-04-15 19:04:49 +02:00
|
|
|
import {Step} from './step';
|
2018-08-31 23:22:15 +02:00
|
|
|
import {VersionComponent} from './version/version.component';
|
2018-09-07 11:24:24 +02:00
|
|
|
import {ConverterSelectorComponent} from './converter-selector/converter-selector.component';
|
|
|
|
import {TextInputFieldComponent} from './text-input-field/text-input-field.component';
|
|
|
|
import {ErrorMessageComponent} from './error-message/error-message.component';
|
2017-04-08 00:24:44 +02:00
|
|
|
|
|
|
|
describe('AppComponent', () => {
|
2017-04-15 18:13:58 +02:00
|
|
|
let sut: AppComponent;
|
|
|
|
let fixture: ComponentFixture<AppComponent>;
|
|
|
|
const firstStep: Step = new Step(0);
|
|
|
|
|
2017-04-08 00:24:44 +02:00
|
|
|
beforeEach(async(() => {
|
|
|
|
TestBed.configureTestingModule({
|
2018-09-07 11:24:24 +02:00
|
|
|
declarations: [
|
|
|
|
AppComponent,
|
|
|
|
ConverterSelectorComponent,
|
|
|
|
ErrorMessageComponent,
|
|
|
|
TextInputFieldComponent,
|
|
|
|
VersionComponent
|
|
|
|
],
|
2018-09-07 12:21:30 +02:00
|
|
|
imports: [FormsModule]
|
2017-04-15 18:13:58 +02:00
|
|
|
})
|
|
|
|
.compileComponents();
|
2017-04-08 00:24:44 +02:00
|
|
|
}));
|
|
|
|
|
2017-04-15 18:13:58 +02:00
|
|
|
beforeEach(() => {
|
|
|
|
fixture = TestBed.createComponent(AppComponent);
|
|
|
|
sut = fixture.componentInstance;
|
|
|
|
});
|
|
|
|
|
2017-11-07 23:53:36 +01:00
|
|
|
it('should create the app', async(() => {
|
|
|
|
// const fixture = TestBed.createComponent(AppComponent);
|
|
|
|
const app = fixture.debugElement.componentInstance;
|
|
|
|
expect(app).toBeTruthy();
|
|
|
|
}));
|
2017-04-08 00:24:44 +02:00
|
|
|
});
|