new-item-form.spec.js 409 B
import { mount } from "@vue/test-utils";
import NewItemForm from "@/components/CommunityComponents/NewItemForm.vue"
describe("NewItemForm component", () => {
let wrapper;
beforeEach(() => {
wrapper = mount(NewItemForm);
});
it("renders correctly", () => {
expect(wrapper.element).toMatchSnapshot();
});
it("is instantiated", () => {
expect(wrapper.exists()).toBeTruthy();
});
});