Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
对单元测试生成的标记有一个直观的了解会很有用。是否有任何内置配置?
也就是说,当我选择运行单个测试时,我应该怎么做才能防止测试运行器清除 qunit-fixture 元素?
正如评论者指出的那样,您可以简单地不使用 qunit-fixture 而是将一个元素用作夹具......但是当然,如果您在测试后留下输出,那么它并不是真正的夹具。
这个想法是在<div id="test-html"> ... </div>您的测试文件中添加一个简单的,然后在其中为您的测试进行操作。测试运行后它不会被清除,但同样,它不是真正的测试夹具 - 谨慎使用。
<div id="test-html"> ... </div>