Feature: Added a Mozimo Daily Register which shows products from Menu Items category

This commit is contained in:
2024-08-19 17:01:04 +05:30
parent 860c7d39ef
commit 18524a5f47
19 changed files with 915 additions and 21 deletions
@@ -0,0 +1,22 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MozimoDailyRegisterComponent } from './mozimo-daily-register.component';
describe('MozimoProductRegisterComponent', () => {
let component: MozimoDailyRegisterComponent;
let fixture: ComponentFixture<MozimoDailyRegisterComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [MozimoDailyRegisterComponent],
}).compileComponents();
fixture = TestBed.createComponent(MozimoDailyRegisterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});