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