Posting comment in e2e test.

This commit is contained in:
David Jay
2016-11-16 13:44:30 -05:00
parent af76e65246
commit 9976464300
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
export default {
module.exports = {
'@tags': ['app'],
'Base url and Hostname': browser => {
const { baseUrl } = browser.globals;
const {baseUrl} = browser.globals;
browser
.url(baseUrl)
.assert.title('Talk - Coral (Beta)')
.waitForElementPresent("body", 1000)
.waitForElementPresent('body', 1000);
},
after: client => {
client.end()
client.end();
}
};
+1 -1
View File
@@ -1,4 +1,4 @@
const comment = 'This is a test comment.'
const comment = 'This is a test comment.';
module.exports = {
'@tags': ['embed-stream', 'post'],