Skip to content

Commit

Permalink
Merge b2d06c3 into 841aa91
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Apr 30, 2024
2 parents 841aa91 + b2d06c3 commit 1625b70
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ for (const dirent of fs.readdirSync(TEST_FIXTURES_ROOT, {
cwd: TEST_CWD,
})
fs.writeFileSync(actualFile, `no error:${res}`)
assert.fail("Expect error")
} catch (e: any) {
const output = `${e.stdout}`
try {
Expand All @@ -63,7 +62,9 @@ for (const dirent of fs.readdirSync(TEST_FIXTURES_ROOT, {
console.error(e)
throw e
}
return
}
assert.fail("Expect error")
})
})
}

0 comments on commit 1625b70

Please sign in to comment.