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