mirror of
https://bitbucket.org/siakitem/my-pi.git
synced 2026-08-28 16:45:22 +00:00
11 lines
430 B
TypeScript
11 lines
430 B
TypeScript
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/);
|
|
});
|