e2e tests

This commit is contained in:
Belen Curcio
2017-10-30 07:52:08 -03:00
parent 34b58779e8
commit a6a903c459
3 changed files with 81 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
module.exports = {
commands: [{
url: function() {
return `${this.api.launchUrl}/admin/community`;
},
ready() {
return this
.waitForElementVisible('body');
},
}],
elements: {
container: '.talk-admin-community',
}
};