lint: format

This commit is contained in:
2025-12-11 00:26:27 +07:00
parent cfc4f4e0f7
commit 52415f91b0
22 changed files with 8297 additions and 10071 deletions

View File

@@ -1,10 +1,10 @@
import { mount } from '@vue/test-utils'
import Tab1Page from '@/views/Tab1Page.vue'
import { describe, expect, test } from 'vitest'
import { mount } from "@vue/test-utils";
import { describe, expect, it } from "vitest";
import Tab1Page from "@/views/Tab1Page.vue";
describe('Tab1Page.vue', () => {
test('renders tab 1 Tab1Page', () => {
const wrapper = mount(Tab1Page)
expect(wrapper.text()).toMatch('Tab 1 page')
})
})
describe("tab1Page.vue", () => {
it("renders tab 1 Tab1Page", () => {
const wrapper = mount(Tab1Page);
expect(wrapper.text()).toMatch("Tab 1 page");
});
});