Files
bbq/src/app/routes/partner/business-statistics/components/partner-custom-detail/partner-custom-detail.component.spec.ts
2022-02-24 17:18:22 +08:00

25 lines
776 B
TypeScript

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