Skip to content

Commit

Permalink
increased the testing timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-jy committed Sep 21, 2023
1 parent 6844666 commit a9820a6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test/integration/testHTAP.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,16 @@ const connOption = require('./connectionOptions').valid;
const testUtil = require('./testUtil');

describe('Query Context Cache test', function () {
this.timeout(1000000);
let connection;
beforeEach(() => {
before(() => {
connection = testUtil.createConnection(connOption);
});

after(async () =>
{
testUtil.destroyConnectionAsync(connection);
});
const querySet = [
{
sqlTexts:[
Expand Down

0 comments on commit a9820a6

Please sign in to comment.