style: Format boilerplate
This commit is contained in:
parent
9b52b43f65
commit
788e1642d1
26 changed files with 686 additions and 564 deletions
|
@ -1,11 +1,11 @@
|
|||
import { describe, it, expect } from 'vitest'
|
||||
import { describe, it, expect } from "vitest";
|
||||
|
||||
import { mount } from '@vue/test-utils'
|
||||
import HelloWorld from '../HelloWorld.vue'
|
||||
import { mount } from "@vue/test-utils";
|
||||
import HelloWorld from "../HelloWorld.vue";
|
||||
|
||||
describe('HelloWorld', () => {
|
||||
it('renders properly', () => {
|
||||
const wrapper = mount(HelloWorld, { props: { msg: 'Hello Vitest' } })
|
||||
expect(wrapper.text()).toContain('Hello Vitest')
|
||||
})
|
||||
})
|
||||
describe("HelloWorld", () => {
|
||||
it("renders properly", () => {
|
||||
const wrapper = mount(HelloWorld, { props: { msg: "Hello Vitest" } });
|
||||
expect(wrapper.text()).toContain("Hello Vitest");
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue