14 lines
392 B
TypeScript
14 lines
392 B
TypeScript
import { BillSettlementReportModule } from './bill-settlement-report.module';
|
|
|
|
describe('BillSettlementReportModule', () => {
|
|
let pbillSettlementReportModule: BillSettlementReportModule;
|
|
|
|
beforeEach(() => {
|
|
pbillSettlementReportModule = new BillSettlementReportModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(pbillSettlementReportModule).toBeTruthy();
|
|
});
|
|
});
|