Apply repository-wide ESLint auto-fix formatting pass
Co-Authored-By: Codex <codex@openai.com>
This commit is contained in:
@@ -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 },
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user