"测试完成" Jasmine的处理程序?

时间:2015-06-17 20:16:12

标签: jasmine

如何将测试完成的处理程序添加到茉莉花测试中?

我需要它来释放测试所消耗的资源。

我使用最新版本的jasmine 2.3.1与Node JS。

1 个答案:

答案 0 :(得分:2)

您可以使用 afterAll 块来实现此目的。

来自documentationafterAll function is called after all specs finish...

describe("afterAll function", function() {

  afterAll(function() {
    //release resources here after all the test suits have finished running
  });

});