mirror of
https://github.com/agersant/polaris
synced 2024-12-11 05:42:56 +00:00
Removing polaris-web tests
This commit is contained in:
parent
e8024d2311
commit
5b62b7d048
4 changed files with 0 additions and 41 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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");
|
||||
}
|
||||
};
|
|
@ -1,8 +0,0 @@
|
|||
module.exports = {
|
||||
'Welcome page loads' : function (browser) {
|
||||
browser
|
||||
.url('http://localhost:5050')
|
||||
.waitForElementVisible('body', 1000);
|
||||
browser.end();
|
||||
}
|
||||
};
|
|
@ -1,7 +0,0 @@
|
|||
module.exports = {
|
||||
before : function(cb) {
|
||||
console.log("Requiring fetch polyfill");
|
||||
fetch = require('node-fetch');
|
||||
cb();
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue