Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2020-08-26 10:11:17 +02:00
Родитель 6a0e026456
Коммит 8f19c0f54d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: CC42AC2A7F0E56D8
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -55,14 +55,14 @@ describe('Device component', () => {
})
it('shows no info text if devices are configured', () => {
const settings = shallowMount(PersonalSettings, {
store,
localVue
})
store.state.devices.push({
id: 1,
name: 'a'
})
const settings = shallowMount(PersonalSettings, {
store,
localVue
})
expect(settings.text()).to.not.contain('No U2F devices configured')
})