mirror of
https://github.com/wassname/talk.git
synced 2026-07-02 20:31:44 +08:00
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
module.exports = {
|
|
'@tags': ['app'],
|
|
'Base url and Hostname': browser => {
|
|
const {baseUrl} = browser.globals;
|
|
browser
|
|
.url(baseUrl)
|
|
.assert.title('Coral Talk')
|
|
.waitForElementPresent('body', 1000);
|
|
},
|
|
after: client => {
|
|
client.end();
|
|
}
|
|
};
|