From 9976464300ecdc4ef1bbcd8357ff7b305ba7163f Mon Sep 17 00:00:00 2001 From: David Jay Date: Wed, 16 Nov 2016 13:44:30 -0500 Subject: [PATCH] Posting comment in e2e test. --- tests/e2e/tests/AppTest.js | 8 ++++---- tests/e2e/tests/EmbedStreamTests.js | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/e2e/tests/AppTest.js b/tests/e2e/tests/AppTest.js index 3e3b6d152..17bca4236 100644 --- a/tests/e2e/tests/AppTest.js +++ b/tests/e2e/tests/AppTest.js @@ -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(); } }; diff --git a/tests/e2e/tests/EmbedStreamTests.js b/tests/e2e/tests/EmbedStreamTests.js index ec8cb92c0..c974927e0 100644 --- a/tests/e2e/tests/EmbedStreamTests.js +++ b/tests/e2e/tests/EmbedStreamTests.js @@ -1,4 +1,4 @@ -const comment = 'This is a test comment.' +const comment = 'This is a test comment.'; module.exports = { '@tags': ['embed-stream', 'post'],