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