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

Project folder and file restructuring/renaming 4

parent 15ed563f
No related branches found
No related tags found
1 merge request!51Project restructure
Pipeline #177613 passed
......@@ -67,7 +67,7 @@ const routes = [
{
path: "/createNewGroup",
name: "createNewGroup",
component: () => import("../views/FormViews/NewCommunityView.vue"),
component: () => import("../views/CommunityViews/NewCommunityView.vue"),
},
{
path: "/group/:id/memberlist",
......@@ -78,13 +78,13 @@ const routes = [
{
path: "/addNewItem",
name: "addNewItem",
component: () => import("../views/FormViews/NewItemView.vue"),
component: () => import("../views/CommunityViews/NewItemView.vue"),
beforeEnter: guardRoute,
},
{
path: "/notifications",
name: "notifications",
component: () => import("../views/FormViews/NotificationView.vue"),
component: () => import("../views/NavigationViews/NotificationView.vue"),
beforeEnter: guardRoute,
},
{
......
......@@ -3,7 +3,7 @@
</template>
<script>
import NewCommunity from "@/components/FormComponents/NewCommunityForm";
import NewCommunity from "@/components/CommunityComponents/NewCommunityForm";
export default {
name: "CreateNewGroupView.vue",
components: {
......
......@@ -3,7 +3,7 @@
</template>
<script>
import AddNewItem from "@/components/FormComponents/NewItemForm";
import AddNewItem from "@/components/CommunityComponents/NewItemForm";
export default {
name: "AddNewItemView.vue",
......
......@@ -5,7 +5,7 @@
</template>
<script>
import NotificationsForm from "@/components/FormComponents/NotificationsForm";
import NotificationsForm from "@/components/NavigationComponents/NotificationsForm";
export default {
name: "NotificationView.vue",
......
import { shallowMount } from "@vue/test-utils";
import AddNewItem from "@/components/FormComponents/NewItemForm.vue";
import AddNewItem from "@/components/CommunityComponents/NewItemForm.vue";
describe("addNewItem elements rendering", () => {
it("renders all labels", () => {
......
import { shallowMount } from "@vue/test-utils";
import CreateNewGroup from "@/components/FormComponents/NewCommunityForm.vue";
import CreateNewGroup from "@/components/CommunityComponents/NewCommunityForm.vue";
describe("CreateNewGroup elements rendering", () => {
it("renders all labels", () => {
......
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