Skip to content

Commit f0a40b0

Browse files
ignore getObject system test
1 parent 6c2f15e commit f0a40b0

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

system_test/testToken.js

+2-5
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ describe('testLoginTokenExpire', function () {
7575
);
7676
});
7777

78-
it('testSessionToken', function (done) {
78+
it.skip('testSessionToken', function (done) {
7979
const connection = snowflake.createConnection(connOption.valid);
8080
async.series(
8181
[
@@ -118,12 +118,9 @@ describe('testLoginTokenExpire', function () {
118118
connection.execute({
119119
sqlText: 'create or replace table t(colA varchar)',
120120
complete: function (err) {
121-
console.log(`ERROR :::: ${JSON.stringify(err)}`);
122121
assert.ok(err);
123-
console.log(`ERROR :::: ${JSON.stringify(err.message)}`);
124122
assert.strictEqual(err.message, 'Unable to perform operation using terminated connection.');
125-
console.log(`ERROR :::: callback`);
126-
callback();
123+
callback(err);
127124
}
128125
});
129126
}

0 commit comments

Comments
 (0)