Bump minor dep updates and update Tab test spec

This commit is contained in:
Andrew Bastin
2021-03-27 23:47:35 -04:00
parent 56982effcd
commit 07e966c640
3 changed files with 79 additions and 29 deletions

View File

@@ -65,7 +65,7 @@ describe("tab", () => {
}
)
expect(wrapper.find("#testdiv").element.parentElement).toBeVisible()
expect(wrapper.find("#testdiv").isVisible()).toEqual(true)
})
test("if not set active, the slot is not rendered", () => {
@@ -80,6 +80,6 @@ describe("tab", () => {
}
)
expect(wrapper.find("#testdiv").element.parentElement).not.toBeVisible()
expect(wrapper.find("#testdiv").isVisible()).toEqual(false)
})
})