mirror of
https://github.com/agersant/polaris
synced 2024-12-11 22:03:11 +00:00
Better output about why polyfill is missing
This commit is contained in:
parent
e6eec5cbad
commit
2091286953
1 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
var assert = require('assert');
|
var assert = require("assert");
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
'Fetch Web API' : function(browser) {
|
'Fetch Web API' : function(browser) {
|
||||||
assert(typeof fetch == "function", "fetch function is not available");
|
assert.equal(typeof fetch, "function", "fetch function is not available");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue