Chore: Model relationships updated to make them simpler Chore: Bill printing majorly refactored for it Due to the sheer depth of the changes. There can be showstoppers. Please test it carefully
14 lines
283 B
TypeScript
14 lines
283 B
TypeScript
import { RegimesModule } from './regimes.module';
|
|
|
|
describe('RegimesModule', () => {
|
|
let regimesModule: RegimesModule;
|
|
|
|
beforeEach(() => {
|
|
regimesModule = new RegimesModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(regimesModule).toBeTruthy();
|
|
});
|
|
});
|