Apply repository-wide ESLint auto-fix formatting pass

Co-Authored-By: Codex <codex@openai.com>
This commit is contained in:
2026-03-08 12:11:57 +08:00
parent 7c48faaa3d
commit 847904c49b
172 changed files with 13629 additions and 9154 deletions

View File

@@ -3,12 +3,12 @@
// Authors:
// imacat.yang@dsp.im (imacat), 2026/03/05
import { describe, it, expect } from 'vitest';
import { mount } from '@vue/test-utils';
import IconChecked from '@/components/icons/IconChecked.vue';
import { describe, it, expect } from "vitest";
import { mount } from "@vue/test-utils";
import IconChecked from "@/components/icons/IconChecked.vue";
describe('IconChecked', () => {
it('shows gray frame when not checked', () => {
describe("IconChecked", () => {
it("shows gray frame when not checked", () => {
const wrapper = mount(IconChecked, {
props: { isChecked: false },
});
@@ -17,7 +17,7 @@ describe('IconChecked', () => {
expect(imgs.length).toBe(1);
});
it('shows blue frame and check mark when checked', () => {
it("shows blue frame and check mark when checked", () => {
const wrapper = mount(IconChecked, {
props: { isChecked: true },
});
@@ -26,7 +26,7 @@ describe('IconChecked', () => {
expect(imgs.length).toBe(2);
});
it('updates rendering when isChecked prop changes', async () => {
it("updates rendering when isChecked prop changes", async () => {
const wrapper = mount(IconChecked, {
props: { isChecked: false },
});