在所有测试开始之前,我必须执行一些代码。因此,我需要使用QUnit Hook before,但是在ember-qunit中,唯一可用的回调是beforeEachafterEach

我该怎么做?

最佳答案

当我在这个问题上写my first comment时,存储库就像这样:qunit-module.js。因此,似乎不支持beforeafter Hook 。因此,my suggestionmodule函数之前启动了管理器,如this twiddle所示。

但是, 5天前,trentmwillis提交了commit,现在看来master已经有了beforeafter钩子(Hook)。我猜ember-qunit的2.1.2版本有此提交。

关于javascript - 在ember-qunit测试之前和之后如何调用钩子(Hook)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39880167/

10-12 13:49