OneQlik/src/app/add-dealer/add-dealer.component.spec.ts
2023-01-07 17:28:53 +00:00

25 lines
654 B
TypeScript

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