Files
bbq/src/app/routes/datatable/components/customtable/mancustomtable/mancustomtable.component.spec.ts
2022-03-30 17:54:15 +08:00

25 lines
751 B
TypeScript

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