如何从组件中检查属性 - Jasmine&角

时间:2018-03-05 09:14:44

标签: angular jasmine

在我写的测试中,我想检查组件中属性的值。

组件:

@media handheld and (max-device-width: 1300px) and (orientation : landscape) {
   .div {....}
} 

@media screen (max-width: 449px), handheld and (orientation:landscape) { ... }

点击“addItem”按钮后,“addMode”应该更改为true,我想检查/测试它。测试文件:

addMode:boolean;
addItem = () => {
  this.addMode = true;
}

但如果我检查it('Should check if #addItem button no longer exists', () => { component.addItem(); // click on the button expect(component.addMode).toBeTruthy(); }); 的值,我会得到component.addMode。 在单击按钮之前和之后检查该变量值的正确方法是什么?感谢

1 个答案:

答案 0 :(得分:0)

瞧!

rm -rf ~/.keras/datasets/fashion-mnist/