pinafore/tests/spec/020-themes.js

22 lines
658 B
JavaScript
Raw Normal View History

2018-04-21 09:33:42 +02:00
import {
settingsNavButton
} from '../utils'
import { loginAsFoobar } from '../roles'
2018-04-21 09:33:42 +02:00
import { Selector as $ } from 'testcafe'
fixture`020-themes.js`
.page`http://localhost:4002`
test('can set a theme', async t => {
await loginAsFoobar(t)
await t
2018-04-21 09:33:42 +02:00
.click(settingsNavButton)
.click($('a[href="/settings/instances"]'))
.click($('a[href="/settings/instances/localhost:3000"]'))
.expect($('body').getAttribute('class')).eql(undefined)
.click($('input[value="scarlet"]'))
.expect($('body').getAttribute('class')).eql('theme-scarlet')
.click($('input[value="default"]'))
.expect($('body').getAttribute('class')).eql('')
})