We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 311a855 commit 15552c9Copy full SHA for 15552c9
1 file changed
test/uploadSpec.js
@@ -172,21 +172,6 @@ describe("Upload", function() {
172
})
173
174
175
- // it("handles server closing data connection during transfer", () => {
176
- // const source = new Readable()
177
- // source._read = () => {}
178
- // source.push("the beginning...")
179
- // this.server.didStartTransfer = () => {
180
- // this.server.dataConn.destroy()
181
- // source.push("...more")
182
- // source.push(null)
183
- // }
184
- // return assert.rejects(() => this.client.uploadFrom(source, FILENAME), {
185
- // name: "Error",
186
- // message: "read ECONNRESET (data socket)"
187
- // })
188
189
-
190
it("can upload with localStart/localEndInclusive")
191
it("can append")
192
it("can append with localStart/localEndInclusive")
0 commit comments