e1c42d4470
They are also linked to products / menu categroies as to which products they can be used on The linking to menu categories is done in the frontend, database is linked directly to products Treeview for menu categories yet to be done in modifier category detail form
14 lines
333 B
TypeScript
14 lines
333 B
TypeScript
import { ModifierCategoriesModule } from './modifier-categories.module';
|
|
|
|
describe('ModifierCategoriesModule', () => {
|
|
let rolesModule: ModifierCategoriesModule;
|
|
|
|
beforeEach(() => {
|
|
rolesModule = new ModifierCategoriesModule();
|
|
});
|
|
|
|
it('should create an instance', () => {
|
|
expect(rolesModule).toBeTruthy();
|
|
});
|
|
});
|