ohif-viewer/LesionTracker/tests/nightwatch/walkthroughs/appLayout.js
2016-01-26 17:57:50 +01:00

15 lines
291 B
JavaScript

// add tests to this file using the Nightwatch.js API
// http://nightwatchjs.org/api
module.exports = {
"Layout & Static Pages" : function (client) {
client
.url("http://localhost:3000")
.resizeWindow(1024, 768)
.verify.elementPresent("body")
.end();
}
};