ipfs-inactive / js-ipfs-unixfs-importer

[ARCHIVED] JavaScript implementation of the UnixFs importer used by IPFS
MIT License
5 stars 4 forks source link

chore: convert tests to use in memory ipld #4

Closed achingbrain closed 5 years ago

achingbrain commented 5 years ago

Also renames .js tests to .spec.js and removes some unused dependencies from package.json.

vmx commented 5 years ago

@achingbrain As you don't do anything special in your test/browser.js and test/node.js you can just remove them. I actually prefer that as you then clearly signal that you can also run the tests individually.

achingbrain commented 5 years ago

As you don't do anything special in your test/browser.js and test/node.js you can just remove them.

Ah, cool - I thought they were required by Aegir. I guess they're only necessary if your tests aren't called *.spec.js?

vmx commented 5 years ago

I guess they're only necessary if your tests aren't called *.spec.js

Exactly!