Fix tests after changing progress unit

This commit is contained in:
Georg Krause 2021-09-26 07:31:53 +02:00
parent 5a74d1d3a0
commit e4efee4e92
1 changed files with 1 additions and 1 deletions

View File

@ -98,7 +98,7 @@ describe('store/player', () => {
})
it('progress', () => {
const state = { currentTime: 4, duration: 10 }
expect(store.getters['progress'](state)).to.equal(40)
expect(store.getters['progress'](state)).to.equal(0.4)
})
})
describe('actions', () => {