fix: run prettier to fix formatting issues flagged by format check

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Test User
2026-04-21 20:26:51 +00:00
parent 00be250f51
commit e09e0c0398
2 changed files with 25 additions and 20 deletions
+4 -4
View File
@@ -1,10 +1,10 @@
import { describe, it, expect } from 'vitest';
import { describe, it, expect } from "vitest";
// Minimal smoke test — verify the test file itself is valid and can run.
// Full plugin component tests will be added in subsequent tasks per PRI-189.
describe('ArgoCD Plugin Scaffold', () => {
it('test suite loads without errors', () => {
describe("ArgoCD Plugin Scaffold", () => {
it("test suite loads without errors", () => {
// Intentionally simple: just verify vitest is working and this file parses
expect(true).toBe(true);
});
});
});