Browse Source

crash on file notfound instead of comparing strings

content-update
Clement Denis 3 years ago committed by Clément
parent
commit
b5254e973b
  1. 5
      js/tests/tell-it-cypher_test.mjs
  2. 5
      js/tests/tell-me-vip_test.mjs

5
js/tests/tell-it-cypher_test.mjs

@ -20,9 +20,8 @@ export const setup = async ({ path }) => {
)
const newFileName =
newFile || (keyword === 'encode' ? 'cypher.txt' : 'clear.txt')
const fileContent = await readFile(newFileName, 'utf8').catch((err) =>
err.code === 'ENOENT' ? 'output file not found' : err,
)
const fileContent = await readFile(newFileName, 'utf8')
return { data: fileContent }
}

5
js/tests/tell-me-vip_test.mjs

@ -22,9 +22,8 @@ export const setup = async ({ path }) => {
const run = async cmd => {
const cmdPath = isAbsolute(cmd) ? cmd : join(dir, cmd)
const { stdout } = await exec(`node ${path} ${cmdPath}`)
const fileContent = await readFile(`vip.txt`, 'utf8').catch(err =>
err.code === 'ENOENT' ? 'output file not found' : err,
)
const fileContent = await readFile(`vip.txt`, 'utf8')
return { data: fileContent }
}

Loading…
Cancel
Save