Skip to content

Commit d7e88eb

Browse files
committed
test: add test for Q9
1 parent cb4655d commit d7e88eb

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import { mount } from "@vue/test-utils"
2+
import { describe, it, expect } from "vitest"
3+
4+
import App from "./App.vue"
5+
6+
describe("Dependency Injection", () => {
7+
it("should work'", () => {
8+
const wrapper = mount(App)
9+
expect(wrapper.vm.$el.textContent).toBe("1")
10+
})
11+
})

0 commit comments

Comments
 (0)