Skip to content

Commit 40de300

Browse files
Update CLI to 0.0.383
1 parent 0ab885b commit 40de300

File tree

7 files changed

+63
-61
lines changed

7 files changed

+63
-61
lines changed

nodejs/package-lock.json

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
"author": "GitHub",
4141
"license": "MIT",
4242
"dependencies": {
43-
"@github/copilot": "^0.0.382",
43+
"@github/copilot": "^0.0.383",
4444
"vscode-jsonrpc": "^8.2.1",
4545
"zod": "^4.3.5"
4646
},

nodejs/test/e2e/harness/sdkTestContext.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ const __filename = fileURLToPath(import.meta.url);
1717
const __dirname = dirname(__filename);
1818
const SNAPSHOTS_DIR = resolve(__dirname, "../../../../test/snapshots");
1919

20-
export const CLI_PATH = process.env.COPILOT_CLI_PATH || resolve(__dirname, "../../../node_modules/@github/copilot/index.js");
20+
export const CLI_PATH =
21+
process.env.COPILOT_CLI_PATH ||
22+
resolve(__dirname, "../../../node_modules/@github/copilot/index.js");
2123

2224
export async function createSdkTestContext() {
2325
const homeDir = realpathSync(fs.mkdtempSync(join(os.tmpdir(), "copilot-test-config-")));

python/e2e/testharness/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ async def setup(self):
7575

7676
async def teardown(self, test_failed: bool = False):
7777
"""Clean up the test context.
78-
78+
7979
Args:
8080
test_failed: If True, skip writing snapshots to avoid corruption.
8181
"""

python/e2e/testharness/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async def start(self) -> str:
6161

6262
async def stop(self, skip_writing_cache: bool = False):
6363
"""Gracefully shut down the proxy server.
64-
64+
6565
Args:
6666
skip_writing_cache: If True, the proxy won't write captured exchanges to disk.
6767
"""

test/harness/package-lock.json

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/harness/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"test": "vitest run"
1212
},
1313
"devDependencies": {
14-
"@github/copilot": "^0.0.372",
14+
"@github/copilot": "^0.0.383",
1515
"@types/node": "^25.0.3",
1616
"openai": "^6.15.0",
1717
"tsx": "^4.21.0",

0 commit comments

Comments
 (0)