From 39364544020430ad67053669ef360b3969d60d04 Mon Sep 17 00:00:00 2001 From: Davyd McColl Date: Wed, 13 Mar 2024 16:41:42 +0200 Subject: [PATCH] :ok_hand: attend to PR commentary --- package.json | 1 - test/integration/test-multi-result-streaming.cjs | 6 +++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 105a11393e..d58248a814 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,6 @@ "lint:typings": "npx prettier --check ./typings", "lint:tests": "npx prettier --check ./test", "test": "poku --debug --include=\"test/esm,test/unit,test/integration\"", - "test-me": "poku --debug --include=test/integration/test-multi-result-streaming.cjs", "test:bun": "poku --debug --platform=\"bun\" --include=\"test/esm,test/unit,test/integration\"", "test:tsc-build": "cd \"test/tsc-build\" && npx tsc -p \"tsconfig.json\"", "coverage-test": "c8 -r cobertura -r lcov -r text npm run test", diff --git a/test/integration/test-multi-result-streaming.cjs b/test/integration/test-multi-result-streaming.cjs index 772d82c0dc..1f4124fd44 100644 --- a/test/integration/test-multi-result-streaming.cjs +++ b/test/integration/test-multi-result-streaming.cjs @@ -1,8 +1,8 @@ +const { assert } = require('poku'); const { createConnection } = require('../common.test.cjs'); -(async function() { - 'use strict'; - const { assert } = require('poku'); +(async () => { + 'use strict'; const conn = createConnection({ multipleStatements: true }),