14 lines
332 B
TypeScript
14 lines
332 B
TypeScript
import { CashierReportModule } from './cashier-report.module';
|
|
|
|
describe('CashierReportModule', () => {
|
|
let cashierReportModule: CashierReportModule;
|
|
|
|
beforeEach(() => {
|
|
cashierReportModule = new CashierReportModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(cashierReportModule).toBeTruthy();
|
|
});
|
|
});
|