This commit is contained in:
Lingzi
2022-03-29 11:26:55 +08:00
parent 86d2ac0e66
commit fb21d5fdeb
38 changed files with 1807 additions and 75 deletions

View File

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