Project start
This commit is contained in:
commit
175e397191
23 changed files with 366 additions and 0 deletions
11
tests/views/HomeView.spec.ts
Normal file
11
tests/views/HomeView.spec.ts
Normal 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");
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue