Files
bbq/src/app/routes/datatable/components/customtable/owner/owner.component.spec.ts
2022-03-29 11:26:55 +08:00

25 lines
688 B
TypeScript

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