标签: javascript typescript jasmine testcase nodelist
当我尝试编写此测试用例时。
let abc = document.querySelectorAll("span"); expect(abc).toBe(true);
我正在
预期 [对象NodeList] 为 true。
答案 0 :(得分:2)
节点列表不会采用bool值,因此测试将失败。而是检查列表是否为空(空)。
expect(abc).not.toBeNull()