Project start

This commit is contained in:
Liviu Burcusel 2025-09-11 15:08:48 +02:00
commit 175e397191
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
23 changed files with 366 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import { describe, it, expect } from "vitest";
import { mount } from "@vue/test-utils";
import HomeView from "../../src/views/HomeView.vue";
describe("HomeView", () => {
const wrapper = mount(HomeView);
it("renders properly", () => {
expect(wrapper.text()).toContain("This is home page");
});
});