Created
June 19, 2013 10:05
-
-
Save magnars/5813202 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
buster.testCase("dom", { | |
"assert.called fails in IE8, this is the minimal case": function () { | |
var spy = this.spy(); | |
spy(document.createElement("input")); | |
assert.called(spy); | |
} | |
}); | |
}()); |
It fails on the assert.called
call, and never reaches sandbox.restore();
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try this to narrow down: