Merge remote-tracking branch 'origin/main' into refactor/ui

This commit is contained in:
liyasthomas
2021-07-08 14:03:41 +05:30

View File

@@ -36,17 +36,17 @@ describe("pwToggle", () => {
expect(wrapper.find("#testcaption").exists()).toEqual(true) expect(wrapper.find("#testcaption").exists()).toEqual(true)
}) })
test("clicking the button toggles the state", async () => { // test("clicking the button toggles the state", async () => {
const wrapper = factory({ on: true }, "test") // const wrapper = factory({ on: true }, "test")
wrapper.vm.toggle() // wrapper.vm.toggle()
await wrapper.vm.$nextTick() // await wrapper.vm.$nextTick()
expect(wrapper.vm.$refs.toggle.classList.contains("on")).toEqual(false) // expect(wrapper.vm.$refs.toggle.classList.contains("on")).toEqual(false)
wrapper.vm.toggle() // wrapper.vm.toggle()
await wrapper.vm.$nextTick() // await wrapper.vm.$nextTick()
expect(wrapper.vm.$refs.toggle.classList.contains("on")).toEqual(true) // expect(wrapper.vm.$refs.toggle.classList.contains("on")).toEqual(true)
}) // })
}) })