Project import from github
This commit is contained in:
commit
0add58254d
179 changed files with 23756 additions and 0 deletions
11
tests/app.test.ts
Normal file
11
tests/app.test.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { describe, expect, it } from "vitest";
|
||||
import type { VueWrapper } from "@vue/test-utils";
|
||||
import { mount } from "@vue/test-utils";
|
||||
import App from "~/app.vue";
|
||||
|
||||
describe("app.vue", () => {
|
||||
const wrapper: VueWrapper = mount(App);
|
||||
it("renders without crashing", () => {
|
||||
expect(wrapper.exists()).toBe(true);
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue