We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb2ab19 commit b1efee6Copy full SHA for b1efee6
1 file changed
lib/native/eventstream.spec.ts
@@ -9,7 +9,7 @@ import {once} from "events";
9
import crt_native from "./binding";
10
import * as os from "os";
11
12
-jest.setTimeout(10000);
+jest.setTimeout(30000);
13
14
function hasEchoServerEnvironment() : boolean {
15
if (process.env.AWS_TEST_EVENT_STREAM_ECHO_SERVER_HOST === undefined) {
@@ -106,7 +106,7 @@ async function doConnectionFailureTest(config : eventstream.ClientConnectionOpti
106
107
test('Eventstream transport connection failure echo server - bad host', async () => {
108
let badConfig : eventstream.ClientConnectionOptions = makeGoodConfig();
109
- badConfig.hostName = "derp.notarealdomainseriously.org";
+ badConfig.hostName = "localhst";
110
111
await doConnectionFailureTest(badConfig);
112
});
0 commit comments