Header / Footer editor added - Right now linked to products permission, which should be changed

This commit is contained in:
2020-11-11 09:55:51 +05:30
parent 77fb8e8428
commit 8db9a7d757
19 changed files with 435 additions and 1 deletions

View File

@ -0,0 +1,24 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { HeaderFooterComponent } from './header-footer.component';
describe('HeaderFooterComponent', () => {
let component: HeaderFooterComponent;
let fixture: ComponentFixture<HeaderFooterComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [HeaderFooterComponent],
}).compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(HeaderFooterComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});