Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit a173a42

Browse files
achingbrainalanshaw
authored andcommitted
fix: update error messages in line with go (#348)
Js says 'file did not exist', go says 'file does not exist'.
1 parent bfdda8a commit a173a42

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

js/src/files/read-readable-stream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module.exports = (createCommon, options) => {
3838

3939
const stream = ipfs.files.readReadableStream(`${testDir}/404`)
4040

41-
stream.on('error', (err) => {
41+
stream.once('error', (err) => {
4242
expect(err).to.exist()
4343
expect(err.message).to.contain('does not exist')
4444
done()

js/src/files/read.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ module.exports = (createCommon, options) => {
3535
it('should not read not found, expect error', (done) => {
3636
const testDir = `/test-${hat()}`
3737

38-
ipfs.files.read(`${testDir}/404`, (err, buf) => {
38+
ipfs.files.read(`${testDir}/404`, (err) => {
3939
expect(err).to.exist()
40-
expect(buf).to.not.exist()
40+
expect(err.message).to.contain('does not exist')
4141
done()
4242
})
4343
})

0 commit comments

Comments
 (0)