Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use collections v5.1.3 #166

Merged
merged 6 commits into from
Jul 11, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
sudo: false
language: node_js
node_js:
- 0.10
- 4
- 6
- 8
2 changes: 1 addition & 1 deletion fs-mock.js
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ LinkNode.prototype.isSymbolicLink = function () {
};

LinkNode.prototype._follow = function (via, memo) {
memo = memo || Set();
memo = memo || new Set();
if (memo.has(this)) {
var error = new Error("Can't follow symbolic link cycle at " + JSON.stringify(via));
error.code = "ELOOP";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"url": "http://github.com/kriskowal/q-io.git"
},
"dependencies": {
"collections": "^0.2.0",
"collections": "^5.1.3",
"mime": "^1.2.11",
"mimeparse": "^0.1.4",
"q": "^1.0.1",
Expand Down
2 changes: 2 additions & 0 deletions spec/http/basic-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ describe("http server and client", function () {
.finally(server.stop)
});

// TODO If your unit-test depend network it's not unit test
// Error: getaddrinfo ENOTFOUND test.webdav.org test.webdav.org:80
xit('should successfully access resources that require HTTP Basic authentication when using the username:password@host.com URL syntax', function(){
// This tries to access a public resource, see http://test.webdav.org/
//
Expand Down