Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
aarong committed Jul 16, 2020
1 parent 130a109 commit e439449
Show file tree
Hide file tree
Showing 6 changed files with 41 additions and 11 deletions.
42 changes: 36 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
"prettier": "^1.14.3",
"promise-timeout": "^1.3.0",
"promisify-event": "^1.0.0",
"promisify-function": "^1.3.2",
"request": "^2.88.2",
"sauce-connect-launcher": "^1.2.4",
"util.promisify": "^1.0.1",
"webpack": "^4.43.0",
"webpack-stream": "^5.2.1"
},
Expand Down
2 changes: 1 addition & 1 deletion tests/browsers/tests.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable import/no-extraneous-dependencies */
import feedmeClient from "feedme-client/bundle"; // Avoid source-map-support warning
import promisifyEvent from "promisify-event";
import promisify from "util.promisify";
import promisify from "promisify-function"; // Node's util.promisify and other major promisification packages do not transpily/polyfill properly
import { timeout as promiseTimeout } from "promise-timeout";

// Included using <script> tags in index.html
Expand Down
2 changes: 1 addition & 1 deletion tests/browsers/webroot/tests.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion tests/node/client.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import WebSocket from "ws";
import promisifyEvent from "promisify-event";
import delay from "delay";
import promisify from "util.promisify"; // Need to be able to run build tests in Node 6
import promisify from "promisify-function"; // Need to be able to run build tests in Node 6
import transportWsClient from "../../build/client";

/*
Expand Down
2 changes: 1 addition & 1 deletion tests/node/server.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import WebSocket from "ws";
import http from "http";
import request from "request";
import check from "check-types";
import promisify from "util.promisify"; // Need to be able to run build tests in Node 6
import promisify from "promisify-function"; // Need to be able to run build tests in Node 6
import promisifyEvent from "promisify-event";
import delay from "delay";
import transportWsServer from "../../build/server";
Expand Down

0 comments on commit e439449

Please sign in to comment.