style: fix lint errors in test files
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 53s
CI / Lint & Test (pull_request) Failing after 5m54s
CI / Build Linux (pull_request) Has been skipped
CI / Build Windows (cross-compile) (pull_request) Has been skipped

- Remove unused imports in config.test.ts and conversations.test.ts
- Remove unused handler variable in tauri.test.ts
- Remove unused _args parameter in vitest.setup.ts mock
- Add coverage/ to eslint ignore list
This commit is contained in:
2026-01-25 23:28:45 -08:00
committed by Naomi Carrigan
parent 8cb4c17dc1
commit d3bb62210d
5 changed files with 5 additions and 15 deletions
-2
View File
@@ -319,8 +319,6 @@ describe("tauri event handling", () => {
describe("mock event system", () => {
it("can emit events through mock system", () => {
const handler = vi.fn();
// The emitMockEvent function should work
expect(typeof emitMockEvent).toBe("function");
});