Skip to content
Merged
Changes from 2 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
6 changes: 2 additions & 4 deletions src/tier-check/checks/test-conformance-results.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,8 @@ export async function checkConformance(options: {

try {
execSync(
`node dist/index.js server --url ${options.serverUrl} -o ${outputDir}`,
`node "${process.argv[1]}" server --url ${options.serverUrl} -o ${outputDir}`,
{
cwd: process.cwd(),
stdio: ['pipe', 'pipe', 'pipe'],
timeout: 120_000
}
Expand Down Expand Up @@ -222,9 +221,8 @@ export async function checkClientConformance(options: {

try {
execSync(
`node dist/index.js client --command '${options.clientCmd}' --suite all -o ${outputDir}`,
`node "${process.argv[1]}" client --command '${options.clientCmd}' --suite all -o ${outputDir}`,
{
cwd: process.cwd(),
stdio: ['pipe', 'pipe', 'pipe'],
timeout: 120_000
}
Expand Down
Loading