chore: remove unused packages

This commit is contained in:
Pihkaal
2025-11-05 18:50:45 +01:00
parent 5000a83159
commit c89fbf085b
13 changed files with 16 additions and 1249 deletions

View File

@@ -1,11 +0,0 @@
import { describe, it, expect } from "vitest";
import { mount } from "@vue/test-utils";
import App from "../App.vue";
describe("App", () => {
it("mounts renders properly", () => {
const wrapper = mount(App);
expect(wrapper.text()).toContain("You did it!");
});
});

View File

@@ -1,13 +1,11 @@
import "./assets/main.css";
import { createApp } from "vue";
import { createPinia } from "pinia";
import ui from "@nuxt/ui/vue-plugin";
import App from "./App.vue";
const app = createApp(App);
app.use(createPinia());
app.use(ui);
app.mount("#app");