1. ホーム
  2. node.js

[解決済み] jasmine-nodeのasync仕様のタイムアウトを変更するにはどうすればよいですか?

2022-02-11 20:13:51

質問

runs/waitsForブロックに頼らずにこのテストを通過させるにはどうしたらいいですか?

it("cannot change timeout", function(done) {

     request("http://localhost:3000/hello", function(error, response, body){

         expect(body).toEqual("hello world");

         done();
     });
});

解決方法は?

この機能のプルリクエストを送信しました ( https://github.com/mhevery/jasmine-node/pull/142 )

it("cannot change timeout", function(done) {

  request("http://localhost:3000/hello", function(error, response, body){

     expect(body).toEqual("hello world");

     done();
  });

}, 5000); // set timeout to 5 seconds