I am unit testing some javascript with Jasmine and wish to spy on(mock) an element of the DOM that is accessed by a jquery selector.
My spec is:
it("should be able to mock DOM call", function() {
spyOn($("#Something"), 'val').andReturn("bar");
result = $("#Something").val();
expect(result).toEqual("bar");
});
In my specrunner.html I have:
<input type="hidden" id="Something" value="foo" />
Unfortunately the spec fails with: should be able to mock DOM call Expected 'foo' to equal 'bar'.
Any ideas?
Kindness,
D