Skip to content

Commit ff26150

Browse files
committed
[misc] correct test suite beforeAll using Skip
1 parent ca98915 commit ff26150

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

test/integration/call.test.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ import Conf from '../conf.js';
1010

1111
describe.concurrent('stored procedure', () => {
1212
let shareConn;
13-
beforeAll(async ({ skip }) => {
13+
beforeAll(async () => {
1414
shareConn = await createConnection(Conf.baseConfig);
15-
if (shareConn.serverVersion().includes('maxScale-6.2.0')) return skip();
1615
await shareConn.query('DROP PROCEDURE IF EXISTS stmtOutParam');
1716
await shareConn.query('DROP PROCEDURE IF EXISTS stmtSimple');
1817
await shareConn.query('DROP PROCEDURE IF EXISTS someProc');

0 commit comments

Comments
 (0)