Skip to content

Commit

Permalink
Tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmartineztiempo committed Dec 10, 2024
1 parent 2d1a3be commit 38c64fe
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions test/esm/integration/pool-cluster/test-promise-wrapper.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -86,21 +86,25 @@ const { createPoolCluster } = require('../../../../promise.js');

const poolNamespace = poolCluster.of('MASTER');

assert.equal(poolNamespace.poolNamespace, poolCluster.poolCluster.of('MASTER'));

const connection = await poolNamespace.getConnection();

assert.ok(connection, 'should get connection');
connection.release();

const result = await poolNamespace.query(
'SELECT 1 as a from dual where 1 = ?',
const [result] = await poolNamespace.query(
'SELECT 1 as a where 1 = ?',
[1],
);
assert.equal(result[0]['a'], 1, 'should query successfully');

const result2 = await poolNamespace.execute(
'SELECT 1 as a from dual where 1 = ?',
const [result2] = await poolNamespace.execute(
'SELECT 1 as a where 1 = ?',
[1],
);
assert.equal(result2[0]['a'], 1, 'should execute successfully');

poolCluster.end();
});
})();

0 comments on commit 38c64fe

Please sign in to comment.