14 lines
422 B
TypeScript
14 lines
422 B
TypeScript
|
import { BatchIntegrityReportRoutingModule } from './batch-integrity-report-routing.module';
|
||
|
|
||
|
describe('BatchIntegrityRoutingModule', () => {
|
||
|
let batchIntegrityRoutingModule: BatchIntegrityReportRoutingModule;
|
||
|
|
||
|
beforeEach(() => {
|
||
|
batchIntegrityRoutingModule = new BatchIntegrityReportRoutingModule();
|
||
|
});
|
||
|
|
||
|
it('should create an instance', () => {
|
||
|
expect(batchIntegrityRoutingModule).toBeTruthy();
|
||
|
});
|
||
|
});
|