Fix strictEqual throwing (#1909)

I looked at what is being called with assert and couldn't find anything but `ok` and `strictEqual`.

Fixes #1903
master
Christopher Chedeau 2017-06-02 14:27:03 -07:00 committed by GitHub
parent 584bf4ecbf
commit 02c48d284e
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ global = window;
Buffer = {isBuffer: function() { return false; }};
fs = module$1 = module = path = os = crypto = {};
process = {argv: [], env: {}}
assert = {ok: function() {}};
assert = {ok: function() {}, strictEqual: function() {}};
function require(path) { return window[path.replace(/.+-/, '')]; }
</script>