Skip to content

Commit

Permalink
firefox native test failure note
Browse files Browse the repository at this point in the history
  • Loading branch information
samthor committed Mar 10, 2016
1 parent 72215d7 commit d2705e1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion suite.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,14 @@ void function() {
assert.isNotFunction(dummy, 'stock proxy is not function');
assert.throws(function() {
dummy();
});
}, TypeError);

var p = new impl(object, {apply: function() {
// doesn't matter
}});
assert.doesNotThrow(function() {
// TODO(samthor): Firefox errors on this in native!
// It expects the proxied object to actually be a function, unlike Chrome.
p();
});
});
Expand Down

0 comments on commit d2705e1

Please sign in to comment.