mirror of
https://github.com/wassname/talk.git
synced 2026-06-28 19:49:58 +08:00
11 lines
237 B
JavaScript
11 lines
237 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);
|
|
}
|
|
};
|