Commit 36499dfe authored by Mark Harding's avatar Mark Harding

(fix): failing tests

1 merge request!638Refactor PRO settings
Pipeline #96215465 passed with stages
in 37 minutes and 46 seconds
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FormToastComponent } from './form-toast.component';
import { FormToastService } from '../../services/form-toast.service';
describe('FormToastComponent', () => {
let component: FormToastComponent;
......@@ -9,6 +10,7 @@ describe('FormToastComponent', () => {
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [FormToastComponent],
providers: [FormToastService],
}).compileComponents();
}));
......
......@@ -8,6 +8,8 @@ import { PageLayoutComponent } from './page-layout.component';
})
class SidebarMenuComponentMock {
@Input() catId;
@Input() menuId;
@Input() menuObj;
}
describe('PageLayoutComponent', () => {
......
Please register or to comment