Skip to content
Snippets Groups Projects
Unverified Commit cf99b830 authored by Varac's avatar Varac
Browse files

Check onlyoffice as well

parent 885c7552
No related branches found
No related tags found
No related merge requests found
......@@ -16,13 +16,17 @@ const assert = require('assert');
console.log('Executing these tests: ' + taikoTests)
await openBrowser()
// Nextcloud
// Nextcloud and Onlyoffice
if (taikoTests.includes('nextcloud') || taikoTests === 'all') {
const nextcloudUrl = 'https://files.' + domain
const onlyofficeUrl = 'https://office.' + domain
const nextcloudUsername = process.env.NEXTCLOUD_USERNAME || 'admin'
const nextcloudPassword = process.env.NEXTCLOUD_PASSWORD
console.log('• Nextcloud and Onlyoffice')
await goto(onlyofficeUrl + '/welcome')
await waitFor('Document Server is running')
await goto(nextcloudUrl)
await write(nextcloudUsername, into(textBox('Username')))
await write(nextcloudPassword, into(textBox('Password')))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment