[Vuejs]-Vue test utils mount option data not working with compostion api

0👍

I found a solution but I don’t know if it’s a good solution

test("renders an admin link", async () => {
   const wrapper = mount(Nav);
   wrapper.vm.admin = true;
   await nextTick();

   expect(wrapper.get("#admin").text()).toEqual("Admin");
});

Leave a comment