vue-express-mongo-boilerplate
Version:
Express NodeJS application server boilerplate with Mongo and VueJS
22 lines (17 loc) • 332 B
JavaScript
;
let commands = {
logout() {
return this
.client.api.url("http://localhost:" + this.client.options.appPort + "/logout")
.waitForElementVisible(".page h1");
}
};
module.exports = {
url() {
return this.client.api.options.baseURL + "/#!/";
},
commands: [commands],
elements: {
title: "#app h1"
}
};