brewman/overlord/src/app/shared/accounting.pipe.spec.ts
tanshu 1350870f9e Moved from tslint to eslint as tslint was depreciated.
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.
2020-10-01 21:28:12 +05:30

9 lines
203 B
TypeScript

import { AccountingPipe } from './accounting.pipe';
describe('AccountingPipe', () => {
it('create an instance', () => {
const pipe = new AccountingPipe();
expect(pipe).toBeTruthy();
});
});