mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 08:35:57 +00:00
feat: add pure ssh2 remote operations
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
import assert from "node:assert/strict";
|
||||
import { readFileSync } from "node:fs";
|
||||
import test from "node:test";
|
||||
|
||||
const extensionSource = readFileSync(new URL("../index.ts", import.meta.url), "utf8");
|
||||
|
||||
test("does not discover or inject remote project instruction files", () => {
|
||||
assert.doesNotMatch(extensionSource, /AGENTS\.md|CLAUDE\.md/);
|
||||
assert.doesNotMatch(extensionSource, /loadRemoteContext|Remote Project Context/);
|
||||
});
|
||||
Reference in New Issue
Block a user