Skip to content

Commit

Permalink
Merge b27759a into e0dc68d
Browse files Browse the repository at this point in the history
  • Loading branch information
Neamar committed Dec 8, 2014
2 parents e0dc68d + b27759a commit 457e7a0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions package.json
Expand Up @@ -17,15 +17,15 @@
"file-watcher"
],
"dependencies": {
"anyfetch": "^2.0.0",
"anyfetch": "^2.1.3",
"async": "0.9.x",
"node-zip": "^1.1.0",
"read": "^1.0.5",
"watch": "^0.11.0"
"watch": "^0.13.0"
},
"devDependencies": {
"mocha": "1.x.x",
"should": "3.3.x"
"mocha": "2.x.x",
"should": "4.3.x"
},
"licence": "MIT",
"engines": {
Expand Down
10 changes: 5 additions & 5 deletions test/helpers/list-files.js
Expand Up @@ -20,11 +20,11 @@ describe('list-files', function() {
if(err) {
throw err;
}
Object.keys(cursor).should.include('/txt1.txt');
Object.keys(cursor).should.include('/txt2.txt');
Object.keys(cursor).should.include('/txt3.txt');
Object.keys(cursor).should.include('/test/txt1.doc');
Object.keys(cursor).should.include('/test/txt2.txt');
Object.keys(cursor).should.containEql('/txt1.txt');
Object.keys(cursor).should.containEql('/txt2.txt');
Object.keys(cursor).should.containEql('/txt3.txt');
Object.keys(cursor).should.containEql('/test/txt1.doc');
Object.keys(cursor).should.containEql('/test/txt2.txt');
Object.keys(cursor).should.have.lengthOf(5);
done();
});
Expand Down

0 comments on commit 457e7a0

Please sign in to comment.