import { ComponentFixture, TestBed } from '@angular/core/testing'; import { CreateAuto } from './create-auto'; describe('CreateAuto', () => { let component: CreateAuto; let fixture: ComponentFixture; beforeEach(async () => { await TestBed.configureTestingModule({ imports: [CreateAuto] }) .compileComponents(); fixture = TestBed.createComponent(CreateAuto); component = fixture.componentInstance; await fixture.whenStable(); }); it('should create', () => { expect(component).toBeTruthy(); }); });