Skip to content
Snippets Groups Projects
Commit 66643cb7 authored by Titus Netland's avatar Titus Netland
Browse files

Component updates

parent b7b01eba
No related branches found
No related tags found
1 merge request!70Component update 2
Pipeline #179001 failed
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();
});
});
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment