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 HelloWorld from "../../src/components/HelloWorld.vue";
describe("HelloWorld", () => {
const wrapper = mount(HelloWorld, { props: { msg: "Hello Vitest" } });
it("renders properly", () => {
expect(wrapper.text()).toContain("Hello Vitest");
});
});