mirror of
https://github.com/agersant/polaris
synced 2024-12-03 18:19:09 +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 = {
|
||||
'Fetch Web API' : function(browser) {
|
||||
assert(typeof fetch == "function", "fetch function is not available");
|
||||
}
|
||||
'Fetch Web API' : function(browser) {
|
||||
assert.equal(typeof fetch, "function", "fetch function is not available");
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue