style: fix prettier formatting and eslint errors on test files

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
frostebite
2026-03-05 11:23:05 +00:00
parent f4451060a7
commit 7db70a712f
3 changed files with 18 additions and 90 deletions
@@ -1,5 +1,4 @@
import { OrchestratorFolders } from './orchestrator-folders';
import path from 'node:path';
// Mock Orchestrator
jest.mock('../orchestrator', () => ({
@@ -61,9 +60,7 @@ describe('OrchestratorFolders', () => {
});
it('handles mixed slashes', () => {
expect(OrchestratorFolders.ToLinuxFolder('some/path\\mixed/slashes\\here')).toBe(
'some/path/mixed/slashes/here',
);
expect(OrchestratorFolders.ToLinuxFolder('some/path\\mixed/slashes\\here')).toBe('some/path/mixed/slashes/here');
});
it('handles empty string', () => {