Added prettier and also prettied all the typescript files using prettier ESLint is using the AirBnB rules which are the most strict to lint the files.
14 lines
348 B
TypeScript
14 lines
348 B
TypeScript
import { NetTransactionsModule } from './net-transactions.module';
|
|
|
|
describe('NetTransactionsModule', () => {
|
|
let netTransactionsModule: NetTransactionsModule;
|
|
|
|
beforeEach(() => {
|
|
netTransactionsModule = new NetTransactionsModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(netTransactionsModule).toBeTruthy();
|
|
});
|
|
});
|