unit testing - BeforeAll and AfterAll in javascript test cases - Stack Overflow

I want do something before all tests, then after?What is the best way to organize my code? For exampl

I want do something before all tests, then after? What is the best way to organize my code? For example: backup some variables -> clear them -> test something -> restore backups. 'beforeEach' and 'afterEach' are too expencive. Thanks!

I want do something before all tests, then after? What is the best way to organize my code? For example: backup some variables -> clear them -> test something -> restore backups. 'beforeEach' and 'afterEach' are too expencive. Thanks!

Share Improve this question asked Feb 12, 2014 at 11:18 user2996905user2996905 1251 silver badge7 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 9

A pretty simple solution:

describe("all o' my tests", function() {

  it("setup for all tests", function() {
    setItUp();
  });

  describe("actual test suite", function() {

  });

  it("tear down for all tests", function() {
    cleanItUp();
  });

});

This has the advantage that you can really put your setup/teardown anywhere (eg. at the begining/end of a nested suite).

Jasmine >=2.1 supports beforeAll/afterAll for doing one-time setups and teardowns for your suite.

If you are using Jasmine 1.x you could use an it for that (as suggested by others) or load a node_module that supports beforeAll/afterAll, for example jasmine-before-all.

Calling a function before all tests start is trivial; however, Jasmine (1.3.1, at least) doesn't allow you to specify your own finished callback outside of the reporter API.

Here's a quick little hack I found on Google Groups. Add this to your SpecRunner.html or equivalent.

var oldCallback = jasmineEnv.currentRunner().finishCallback;

jasmineEnv.currentRunner().finishCallback = function () {
    oldCallback.apply(this, arguments);

    // Do your code here
};

jasmineEnv.execute();

Jasmine provides options to write your own reporter and attach it. To implement a reporter, there are basic callbacks like initialize, jasmineStarted and jasmineDone. With this you can achieve your requirement. For example, in Jasmine 2.0, refer to jasmine-html.js file to have a basic understanding.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743554240a4470605.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信