forked from wuchengwei/node-wget
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added a test server and new test for append vs write (#5) * Added new test express server that serves a random binary file * Added test to not append file * Upgraded to version 2.0.0 (#6) * Integrate circle (#7) * Added test command, added circle.yml * Switched filesize to a number, added handleing of unknown filesizes instead of returning NAN * 1) added redirect tests 2) added infinite redirect tests 3) filesize is now a number instead of a string 4) No longer returns NaN if the server does not send a content length a) If there is no content length, the "filesize" will be set to 10^length(numberofdownloadedbytes) b) this will make progress bars continue to work, but they may jump between 0-99% multiple times 5) Added file size tests * Formatting * Added handling of unspecified content length
- Loading branch information
Showing
9 changed files
with
1,018 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
.DS_Store | ||
node_modules | ||
.idea | ||
coverage | ||
.nyc_output |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
machine: | ||
node: | ||
version: 6.10.0 |
Oops, something went wrong.