From bcbdeb7231e2ad208421c8c61085cec881dc0867 Mon Sep 17 00:00:00 2001 From: Rauno Viskus Date: Mon, 11 Apr 2022 10:54:56 +0300 Subject: [PATCH] fix: remove forcing RUN_MSSQL_TESTS to be true in tests (#965) --- .../node/instrumentation-tedious/test/instrumentation.test.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/plugins/node/instrumentation-tedious/test/instrumentation.test.ts b/plugins/node/instrumentation-tedious/test/instrumentation.test.ts index 5c18e8404d2..93132818387 100644 --- a/plugins/node/instrumentation-tedious/test/instrumentation.test.ts +++ b/plugins/node/instrumentation-tedious/test/instrumentation.test.ts @@ -33,8 +33,6 @@ import { TediousInstrumentation } from '../src'; import makeApi from './api'; import type { Connection, ConnectionConfig } from 'tedious'; -process.env.RUN_MSSQL_TESTS = 'true'; - const port = Number(process.env.MSSQL_PORT) || 1433; const database = process.env.MSSQL_DATABASE || 'master'; const host = process.env.MSSQL_HOST || '127.0.0.1';