Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/native/eventstream.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {once} from "events";
import crt_native from "./binding";
import * as os from "os";

jest.setTimeout(10000);
jest.setTimeout(30000);

function hasEchoServerEnvironment() : boolean {
if (process.env.AWS_TEST_EVENT_STREAM_ECHO_SERVER_HOST === undefined) {
Expand Down Expand Up @@ -106,7 +106,7 @@ async function doConnectionFailureTest(config : eventstream.ClientConnectionOpti

test('Eventstream transport connection failure echo server - bad host', async () => {
let badConfig : eventstream.ClientConnectionOptions = makeGoodConfig();
badConfig.hostName = "derp.notarealdomainseriously.org";
badConfig.hostName = "localhst";

await doConnectionFailureTest(badConfig);
});
Expand Down
Loading