This repository was archived by the owner on Aug 12, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +17
-17
lines changed
Expand file tree Collapse file tree 7 files changed +17
-17
lines changed Original file line number Diff line number Diff line change 4040 },
4141 "homepage" : " https://github.com/ipfs/js-ipfs-unixfs-engine#readme" ,
4242 "devDependencies" : {
43- "aegir" : " ^12.2.0 " ,
43+ "aegir" : " ^13.0.5 " ,
4444 "chai" : " ^4.1.2" ,
4545 "dirty-chai" : " ^2.0.1" ,
46- "ipfs" : " ~0.27.4 " ,
46+ "ipfs" : " ~0.27.7 " ,
4747 "ipfs-block-service" : " ~0.13.0" ,
48- "ipfs-repo" : " ~0.18.5 " ,
48+ "ipfs-repo" : " ~0.18.7 " ,
4949 "ncp" : " ^2.0.0" ,
5050 "pre-commit" : " ^1.2.2" ,
5151 "pull-generate" : " ^2.2.0" ,
5252 "pull-zip" : " ^2.0.1" ,
5353 "rimraf" : " ^2.6.2" ,
54- "sinon" : " ^4.1.3 " ,
54+ "sinon" : " ^4.4.2 " ,
5555 "split" : " ^1.0.1"
5656 },
5757 "dependencies" : {
6060 "cids" : " ~0.5.2" ,
6161 "deep-extend" : " ~0.5.0" ,
6262 "ipfs-unixfs" : " ~0.1.14" ,
63- "ipld-dag-pb" : " ~0.11.4 " ,
63+ "ipld-dag-pb" : " ~0.13.1 " ,
6464 "ipld-resolver" : " ~0.14.1" ,
6565 "left-pad" : " ^1.2.0" ,
66- "lodash" : " ^4.17.4 " ,
67- "multihashes" : " ~0.4.12 " ,
66+ "lodash" : " ^4.17.5 " ,
67+ "multihashes" : " ~0.4.13 " ,
6868 "multihashing-async" : " ~0.4.8" ,
6969 "pull-batch" : " ^1.0.0" ,
7070 "pull-block" : " ^1.4.0" ,
7171 "pull-cat" : " ^1.1.11" ,
7272 "pull-pair" : " ^1.1.0" ,
7373 "pull-paramap" : " ^1.2.2" ,
7474 "pull-pause" : " 0.0.2" ,
75- "pull-pushable" : " ^2.1.1 " ,
76- "pull-stream" : " ^3.6.1 " ,
75+ "pull-pushable" : " ^2.2.0 " ,
76+ "pull-stream" : " ^3.6.2 " ,
7777 "pull-traverse" : " ^1.0.3" ,
7878 "pull-write" : " ^1.1.4" ,
7979 "sparse-array" : " ^1.3.1"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ const expect = chai.expect
88const pull = require ( 'pull-stream' )
99const loadFixture = require ( 'aegir/fixtures' )
1010
11- const rawFile = loadFixture ( __dirname , ' fixtures/1MiB.txt')
11+ const rawFile = loadFixture ( 'test/ fixtures/1MiB.txt')
1212
1313describe ( 'chunker: fixed size' , ( ) => {
1414 it ( 'chunks non flat buffers' , ( done ) => {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const pull = require('pull-stream')
1313const unixFSEngine = require ( './../src' )
1414const exporter = unixFSEngine . exporter
1515
16- const smallFile = loadFixture ( __dirname , ' fixtures/200Bytes.txt')
16+ const smallFile = loadFixture ( 'test/ fixtures/200Bytes.txt')
1717
1818module . exports = ( repo ) => {
1919 describe ( 'exporter subtree' , ( ) => {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const loadFixture = require('aegir/fixtures')
1616const unixFSEngine = require ( './../src' )
1717const exporter = unixFSEngine . exporter
1818
19- const bigFile = loadFixture ( __dirname , ' fixtures/1.2MiB.txt')
19+ const bigFile = loadFixture ( 'test/ fixtures/1.2MiB.txt')
2020
2121module . exports = ( repo ) => {
2222 describe ( 'exporter' , ( ) => {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ const BlockService = require('ipfs-block-service')
99const IPLDResolver = require ( 'ipld-resolver' )
1010const pull = require ( 'pull-stream' )
1111const loadFixture = require ( 'aegir/fixtures' )
12- const bigFile = loadFixture ( __dirname , ' fixtures/1.2MiB.txt')
12+ const bigFile = loadFixture ( 'test/ fixtures/1.2MiB.txt')
1313
1414const unixFSEngine = require ( './../' )
1515const exporter = unixFSEngine . exporter
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ function stringifyMh (files) {
2323 } )
2424}
2525
26- const bigFile = loadFixture ( __dirname , ' fixtures/1.2MiB.txt')
27- const smallFile = loadFixture ( __dirname , ' fixtures/200Bytes.txt')
26+ const bigFile = loadFixture ( 'test/ fixtures/1.2MiB.txt')
27+ const smallFile = loadFixture ( 'test/ fixtures/200Bytes.txt')
2828
2929const baseFiles = {
3030 '200Bytes.txt' : {
Original file line number Diff line number Diff line change @@ -23,8 +23,8 @@ function stringifyMh (files) {
2323 } )
2424}
2525
26- const bigFile = loadFixture ( __dirname , ' fixtures/1.2MiB.txt')
27- const smallFile = loadFixture ( __dirname , ' fixtures/200Bytes.txt')
26+ const bigFile = loadFixture ( 'test/ fixtures/1.2MiB.txt')
27+ const smallFile = loadFixture ( 'test/ fixtures/200Bytes.txt')
2828
2929const baseFiles = {
3030 '200Bytes.txt' : {
You can’t perform that action at this time.
0 commit comments