tanshu
1350870f9e
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
324 B
TypeScript
14 lines
324 B
TypeScript
import { TrialBalanceModule } from './trial-balance.module';
|
|
|
|
describe('TrialBalanceModule', () => {
|
|
let trialBalanceModule: TrialBalanceModule;
|
|
|
|
beforeEach(() => {
|
|
trialBalanceModule = new TrialBalanceModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(trialBalanceModule).toBeTruthy();
|
|
});
|
|
});
|