Open alecgibson opened 10 months ago
4.1.0
When developing with a fork of vuex, I noticed that vuex tests break when bumping vue to the latest version:
vuex
vue
FAIL test/unit/hot-reload.spec.js ● Hot Reload › getters expect(received).toBe(expected) // Object.is equality Expected: 10 Received: 1 279 | }) 280 | > 281 | expect(vm.a).toBe(10) | ^ 282 | store.dispatch('check', 10) 283 | 284 | if (isSSR) { at Object.toBe (test/unit/hot-reload.spec.js:281:18)
vuejs/vuex
main
yarn test
yarn add --dev vue@latest
Tests pass on latest version of vue — presumably this means there's broken behaviour when using vuex with the latest version of vue?
No response
Did a bit of investigating on version numbers at least, and it looks like this broke in vue@3.4.0. Tests pass fine in vue@3.3.13, but fail in vue@3.4.0
vue@3.4.0
vue@3.3.13
Version
4.1.0
Describe the bug
When developing with a fork of
vuex
, I noticed thatvuex
tests break when bumpingvue
to the latest version:Reproduction
vuejs/vuex
main
branchyarn test
vue
:yarn add --dev vue@latest
yarn test
againExpected behavior
Tests pass on latest version of
vue
— presumably this means there's broken behaviour when usingvuex
with the latest version ofvue
?Additional context
No response
Validations