16455fdcac
rename the product group table to either product category or menu category move the group_type field from productgroup to products and name it sales category eg. Food, beverage, etc. also, set the tax for sales category and not individual product Added the printers permission to end of permissions and only for owner, set them right
16 lines
390 B
TypeScript
16 lines
390 B
TypeScript
import {inject, TestBed} from '@angular/core/testing';
|
|
|
|
import {PrinterResolver} from './printer-resolver.service';
|
|
|
|
describe('PrinterResolver', () => {
|
|
beforeEach(() => {
|
|
TestBed.configureTestingModule({
|
|
providers: [PrinterResolver]
|
|
});
|
|
});
|
|
|
|
it('should be created', inject([PrinterResolver], (service: PrinterResolver) => {
|
|
expect(service).toBeTruthy();
|
|
}));
|
|
});
|