Skip to content

Commit 05baf36

Browse files
committed
Fix tests, uses fork of http2 to support node 4.3.0 without ALPN
- the push server don't send TLS NPN and makes the http2 lib break - the fork forces the next protocol negociation to h2 as we're sure
1 parent dad50d1 commit 05baf36

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"deepcopy": "^0.6.1",
2929
"express": "^4.13.4",
3030
"gcloud": "^0.28.0",
31-
"http2": "^3.3.2",
31+
"http2": "flovilmart/node-http2",
3232
"mailgun-js": "^0.7.7",
3333
"mime": "^1.3.4",
3434
"mongodb": "~2.1.0",

spec/Parse.Push.spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict';
12
describe('Parse.Push', () => {
23
it('should properly send push', (done) => {
34
var pushAdapter = {

0 commit comments

Comments
 (0)