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

Commit 88a635a

Browse files
dryajovdaviddias
authored andcommitted
fix: files.add accepts object
1 parent 8f25e9b commit 88a635a

File tree

1 file changed

+23
-1
lines changed

1 file changed

+23
-1
lines changed

js/src/files.js

+23-1
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,29 @@ module.exports = (common) => {
614614
], done)
615615
})
616616

617-
it('with ipfs path, nested value', (done) => {
617+
it('with ipfs path, as object and nested value', (done) => {
618+
const file = {
619+
path: 'a/testfile.txt',
620+
content: smallFile.data
621+
}
622+
623+
ipfs.files.add(file, (err, filesAdded) => {
624+
expect(err).to.not.exist()
625+
626+
filesAdded.forEach((file) => {
627+
if (file.path === 'a') {
628+
ipfs.files.get(`/ipfs/${file.hash}/testfile.txt`, (err, files) => {
629+
expect(err).to.not.exist()
630+
expect(files).to.be.length(1)
631+
expect(files[0].content.toString('utf8')).to.contain('Plz add me!')
632+
done()
633+
})
634+
}
635+
})
636+
})
637+
})
638+
639+
it('with ipfs path, as array and nested value', (done) => {
618640
const file = {
619641
path: 'a/testfile.txt',
620642
content: smallFile.data

0 commit comments

Comments
 (0)