This commit is contained in:
Lingzi
2022-03-30 17:54:15 +08:00
81 changed files with 2568 additions and 244 deletions

View File

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