Я проверяю консоль .. shownCategories не пусто, но в тесте пусто. Я пытаюсь проверить, вызывается ли FilterShownCategories (), но получен ли он = 0, ожидается = 1
it("in case edit should call filterCategories()", () => {
component.state == 'edit';
if (component.state == 'edit') {
const filterCategoriesSpy = spyOn(component, 'filterCategories').and.returnValue(
[{
hiddenVariants: 0,
id: 187910,
lang: "de",
name: "AMG/Exterieur",
plId: 5389,
refId: "1015001000",
type: "AMG",
visibleVariants: 5
}, {
hiddenVariants: 0,
id: 187911,
lang: "de",
name: "AMG/Interieur",
plId: 5389,
refId: "1015002000",
type: "AMG",
visibleVariants: 7,
}]);
expect(filterCategoriesSpy).toHaveBeenCalledTimes(1);
}
});
}}
Это веселье c:
public addFirstTable() {
console.log("addFirstTable");
//awel mara showncategories gaya fadya a lazm amlaha lw state msh edit
if (this.state != "compare") {
// this.shownCategories = this.allCategories.map(a => ({ ...a }));
this.shownCatgeories = this.FilterShownCategories();
console.log("shownCategories if state is not compare", this.shownCategories);
}
}
Вывод:
expected=1, received=0