13

私はジャスミンをスパイすることに少し混乱しています。このようなコードがありますが、テストする方法がわかりません。

var params = {
    param1: "",
    param2: "link",
    param3: "1", 
    param4 : "1"
};
var func = new myFunction(params );
func.doSomething();

func.doSomething が呼び出されたことをテストするにはどうすればよいですか。

これは私がこれまでに書いたテストです

describe("Library", function() {

  beforeEach(function() {
  });

  it("should include correct parameters", function() {
      expect(params.param1).toEqual("");
      expect(params.param2).toEqual("link");
      expect(params.param3).toEqual("1");
      expect(params.param4).toEqual("1");
  });

  it("should show that method doSomething is called with zero arguments", function() {
          // I'm not sure how to write test for this.
  });
});
4

2 に答える 2

16

私はあなたが使いたいと思うtoHaveBeenCalledWith()

it("should show that method doSomething is called with zero arguments", function() {
    // Ensure the spy was called with the correct number of arguments
    // In this case, no arguments
    expect(func.doSomething).toHaveBeenCalledWith();
});
于 2012-05-30T17:53:48.697 に答える