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

Make solid tests for node-ipfs-api #81

Merged
merged 61 commits into from
Oct 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
e5ddc7f
Start implementing browser tests using karma
dignifiedquire Oct 19, 2015
700d6f6
Spawn ipfs node for running tests
dignifiedquire Oct 19, 2015
a184f1a
Ready for travis
dignifiedquire Oct 19, 2015
105fb32
Fix path
dignifiedquire Oct 19, 2015
1934220
another try
dignifiedquire Oct 20, 2015
2ea7f73
fix
dignifiedquire Oct 20, 2015
dc39d98
fix
dignifiedquire Oct 20, 2015
1665b27
fix3
dignifiedquire Oct 20, 2015
11b07d3
Add saucelabs support
dignifiedquire Oct 21, 2015
6ddd117
Remove debugging cmd
dignifiedquire Oct 21, 2015
0c31e40
remove the skips, we need to pass all of the tests + update ipfs vers…
daviddias Oct 21, 2015
2771a5c
remove unnecessary second installation of go-ipfs
daviddias Oct 21, 2015
39072b0
update ipfsd
daviddias Oct 24, 2015
65802e9
support for multi node spawning
daviddias Oct 24, 2015
e65b042
deactivate mdns and bootstrap on the 3 nodes
daviddias Oct 24, 2015
9d66bfd
add connect Nodes a to b and c
daviddias Oct 24, 2015
e45161b
reorg tests, update PR state
daviddias Oct 24, 2015
4edcebd
list tests
daviddias Oct 24, 2015
3b0a786
rm unnecessary comments
daviddias Oct 24, 2015
f97c0b3
fix issue #84
daviddias Oct 25, 2015
6675e5b
add folder (recursively) test
daviddias Oct 25, 2015
88d24e6
config.show test
daviddias Oct 25, 2015
1f611e9
.version and .commands
daviddias Oct 25, 2015
6ae3948
diag net
daviddias Oct 25, 2015
f30ddea
object.stat test
daviddias Oct 25, 2015
fdc26a4
object.links
daviddias Oct 25, 2015
a4655dd
.swarm.peers test
daviddias Oct 25, 2015
ec0336d
gulpifying things
daviddias Oct 25, 2015
2cd11f0
gulpify start and stop of daemons
daviddias Oct 25, 2015
06f6195
add browser to the test suit
daviddias Oct 25, 2015
25f9077
enable browser tests
daviddias Oct 25, 2015
bc72e36
add run sequence
daviddias Oct 25, 2015
e427e91
fix swarm.connect and swarm.peers tests
daviddias Oct 25, 2015
5becd24
fix ls
daviddias Oct 25, 2015
faf9495
fix refs
daviddias Oct 25, 2015
57056ae
Add debug mode
dignifiedquire Oct 25, 2015
1da5999
add option to change CORS
daviddias Oct 25, 2015
5b90cd6
Merge branch 'solid-tests' of github.com:ipfs/node-ipfs-api into soli…
daviddias Oct 25, 2015
d65f6f1
fix set config value, thanks to Victor!
daviddias Oct 26, 2015
929a073
remove some tests from browser context through isNode
daviddias Oct 26, 2015
29a302e
remove unused stop daemon test
daviddias Oct 26, 2015
f94c628
Do not require credentials in debug mode
dignifiedquire Oct 26, 2015
7ab13cd
Do not run refs tests in the browser
dignifiedquire Oct 26, 2015
db73e41
generate new ipfsapi build
daviddias Oct 26, 2015
abaa434
add mention that this version only supports IPFS 0.3.7
daviddias Oct 26, 2015
2a552d7
rm tmp file
daviddias Oct 26, 2015
ac67c34
remove refs tests from browser test suit
daviddias Oct 26, 2015
cd54a44
gulpfile exit
daviddias Oct 26, 2015
3d5f781
properly disable mdns
daviddias Oct 27, 2015
b2e3076
.config.replace test
daviddias Oct 27, 2015
e0bb392
ping test
daviddias Oct 27, 2015
5fd3c6d
dht findprovs test
daviddias Oct 27, 2015
e83863e
dht findprovs test
daviddias Oct 27, 2015
d174fd7
dht findprovs test
daviddias Oct 27, 2015
0986ce7
pin add, list and remove tests
daviddias Oct 27, 2015
58d2d83
remove gateway calls as that does not exist anymore
daviddias Oct 27, 2015
540a263
name.publish and name.resolve tests
daviddias Oct 27, 2015
3f8a9a1
Improve gulp setup and run browser tests
dignifiedquire Oct 27, 2015
adc062c
Merge branch 'solid-tests' of github.com:ipfs/node-ipfs-api into soli…
daviddias Oct 27, 2015
ebc6830
add debug mode as a npm script
daviddias Oct 27, 2015
106ee29
prepare for merge
daviddias Oct 28, 2015
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "standard"
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
node_modules
some-test.js
npm-debug.log
sauce_connect.log
test/tmp-disposable-nodes-addrs.json
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
language: node_js
node_js:
- "4.0"

before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ IPFS API wrapper library for Node.js and the browser

# Usage

### NOTE - Current version only supports IPFS 0.3.7

## Installing the module

### In Node.js Through npm
Expand Down
Loading