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
299 B
TypeScript
14 lines
299 B
TypeScript
import { PurchasesModule } from './purchases.module';
|
|
|
|
describe('PurchasesModule', () => {
|
|
let purchasesModule: PurchasesModule;
|
|
|
|
beforeEach(() => {
|
|
purchasesModule = new PurchasesModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(purchasesModule).toBeTruthy();
|
|
});
|
|
});
|