We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a9c0d9 commit d05c22cCopy full SHA for d05c22c
test/dbObject5.js
@@ -87,6 +87,9 @@ describe('204. dbObject5.js', () => {
87
)`;
88
const plsql = testsUtil.sqlCreateTable(TABLE, sql);
89
await conn.execute(plsql);
90
+ await conn.execute(proc1);
91
+ await conn.execute(proc2);
92
+ await conn.execute(proc3);
93
}); // before()
94
95
after(async () => {
@@ -193,9 +196,6 @@ describe('204. dbObject5.js', () => {
193
196
}); // 204.4
194
197
195
198
it('204.5 call procedure with 2 OUT binds of DbObject', async function() {
- await conn.execute(proc1);
- await conn.execute(proc2);
- await conn.execute(proc3);
199
200
let result = await conn.execute(
201
`BEGIN nodb_getDataCursor3(p_cur1 => :p_cur1,
0 commit comments