Removing polaris-web tests

This commit is contained in:
Antoine Gersant 2017-07-04 13:18:56 -07:00
parent e8024d2311
commit 5b62b7d048
4 changed files with 0 additions and 41 deletions

View file

@ -1,19 +0,0 @@
{
"src_folders" : ["test/nightwatch"],
"globals_path": "test/nightwatch/globals.js",
"test_settings" : {
"default" : {
"silent": true,
"exclude": "globals.js",
"screenshots" : {
"enabled" : false,
"path" : ""
},
"desiredCapabilities": {
"browserName": "phantomjs",
"javascriptEnabled" : true
}
}
}
}

View file

@ -1,7 +0,0 @@
var assert = require("assert");
module.exports = {
'Fetch Web API' : function(browser) {
assert.equal(typeof fetch, "function", "fetch function is not available");
}
};

View file

@ -1,8 +0,0 @@
module.exports = {
'Welcome page loads' : function (browser) {
browser
.url('http://localhost:5050')
.waitForElementVisible('body', 1000);
browser.end();
}
};

View file

@ -1,7 +0,0 @@
module.exports = {
before : function(cb) {
console.log("Requiring fetch polyfill");
fetch = require('node-fetch');
cb();
}
};