Skip to content

Commit a771fb2

Browse files
SNOW-1944643 - network error retries
1 parent 5e648cd commit a771fb2

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

ci/container/package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
"mocha": "^10.2.0",
1414
"mock-require": "^3.0.3",
1515
"nyc": "^15.1.0",
16-
"test-console": "^2.0.0"
16+
"test-console": "^2.0.0",
17+
"wiremock": "^3.10.0",
18+
"wiremock-rest-client": "^1.11.0"
1719
},
1820
"author": "Snowflake, Inc.",
1921
"license": "ISC"

test/integration/testConnectionRetries.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const testUtil = require('../integration/testUtil');
88
const snowflake = require('../../lib/snowflake');
99
const assert = require('assert');
1010

11-
describe.only('Connection test', function () {
11+
describe('Connection test', function () {
1212
this.timeout(500000);
1313
let port;
1414
let wireMock;

test/integration/testMaxLobSize.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function generateRandomString(sizeInBytes) {
1717
}
1818

1919
if (process.env.RUN_MANUAL_TESTS_ONLY === 'true'){
20-
describe.only('Max LOB test', function () {
20+
describe('Max LOB test', function () {
2121
let connection;
2222
// This size cannot be tested on our env. The snowflake team should test internally.
2323
const MAX_LOB_SIZE = 128 * 1024 * 1024;

0 commit comments

Comments
 (0)