Add remote sync command and tests

This commit is contained in:
2026-03-20 16:21:53 +01:00
parent 6ad74bb991
commit 344e10ac46
4 changed files with 92 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
import { describe, it, expect, vi } from 'vitest';
import { action } from '../commands/remote.js';
import axios from 'axios';
vi.mock('axios');
describe('remote command', () => {
it('should validate inputs', async () => {
// Simple test for now
await expect(action({})).resolves.not.toThrow();
});
});