From 5da5987beedf9b8f19e5177b0ac7a5832ddddf04 Mon Sep 17 00:00:00 2001 From: tommy0103 Date: Thu, 16 Jul 2026 21:11:25 +0800 Subject: [PATCH] test(cli): normalize project path expectations on Windows --- tests/runtime.test.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/runtime.test.mjs b/tests/runtime.test.mjs index c424ab5..021fe27 100644 --- a/tests/runtime.test.mjs +++ b/tests/runtime.test.mjs @@ -3,7 +3,7 @@ import assert from 'node:assert/strict'; import { createRequire } from 'node:module'; import { mkdtempSync, mkdirSync, statSync, writeFileSync } from 'node:fs'; import { tmpdir } from 'node:os'; -import { join } from 'node:path'; +import { join, normalize } from 'node:path'; import { runCli as runRuntime } from './cli-test-helpers.mjs'; @@ -187,7 +187,7 @@ test('runtime indexes Codex root sessions into the shared query helpers', () => id: `codex:${codexId}`, source: 'codex', project: '-tmp-obelisk-runtime', - project_path: '/tmp/obelisk-runtime', + project_path: normalize('/tmp/obelisk-runtime'), git_branch: 'feat/codex', version: '0.135.0-alpha.1', message_count: 3,