Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions cli/tests/launch.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
// cli/tests/launch.test.js ??? Launch module unit tests
// cli/tests/launch.test.js Launch module unit tests

const { describe, it, before, after } = require("node:test");
const assert = require("node:assert");
Expand Down Expand Up @@ -46,7 +46,7 @@ describe("Launch Module", () => {
before(() => {
assert.ok(
fs.existsSync(contentDir),
"content/ must exist ??? run 'npm run prepare' first"
"content/ must exist run 'npm run prepare' first"
);
});

Expand Down Expand Up @@ -257,7 +257,7 @@ describe("Launch Module", () => {
.join("\n");
assert.ok(
!/\bshell\s*:\s*true\b/.test(nonCommentLines),
"launch.js must not pass shell: true to spawn() ??? doing so splits the bootstrap prompt into multiple arguments"
"launch.js must not pass shell: true to spawn() doing so splits the bootstrap prompt into multiple arguments"
);
});
});
Expand Down Expand Up @@ -331,7 +331,7 @@ describe("Launch Module", () => {
}

for (const cliName of ["claude", "copilot", "gh-copilot", "codex"]) {
// TC-CLI-082 and TC-CLI-083 combined ??? run once per CLI
// TC-CLI-082 and TC-CLI-083 combined run once per CLI
it(`TC-CLI-082/083: ${cliName} spawned with originalCwd and --add-dir for staging dir`, () => {
const mockBinDir = path.join(cwdTestTmpDir, `mock-bin-${cliName}`);
fs.mkdirSync(mockBinDir, { recursive: true });
Expand Down
Loading