Files
talk/test/e2e/tests/Visitor/FlagCommentTest.js
T
Wyatt Johnson ae5da93730 linting fixes
2017-05-11 17:44:51 -06:00

21 lines
464 B
JavaScript

module.exports = {
'@tags': ['flag', 'comments', 'visitor'],
before: (client) => {
const embedStreamPage = client.page.embedStreamPage();
embedStreamPage
.navigate()
.ready();
},
'Visitor tries to flag a comment': (client) => {
const embedStreamPage = client.page.embedStreamPage();
embedStreamPage
.flagComment()
.waitForElementVisible('@signInDialog', 2000);
},
after: (client) => {
client.end();
}
};