Refactor remote commands into remote subdirectory

This commit is contained in:
2026-03-20 16:24:09 +01:00
parent 344e10ac46
commit 1d04649cbf
5 changed files with 77 additions and 91 deletions
-12
View File
@@ -1,12 +0,0 @@
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();
});
});