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
349 B
TypeScript
14 lines
349 B
TypeScript
import { RawMaterialCostModule } from './raw-material-cost.module';
|
|
|
|
describe('RawMaterialCostModule', () => {
|
|
let rawMaterialCostModule: RawMaterialCostModule;
|
|
|
|
beforeEach(() => {
|
|
rawMaterialCostModule = new RawMaterialCostModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(rawMaterialCostModule).toBeTruthy();
|
|
});
|
|
});
|