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