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 819129e commit 38ed9fcCopy full SHA for 38ed9fc
1 file changed
dev-packages/node-integration-tests/suites/tracing/postgres/test.ts
@@ -1,8 +1,12 @@
1
-import { describe, expect } from 'vitest';
+import { afterAll, describe, expect } from 'vitest';
2
import { conditionalTest } from '../../../utils';
3
-import { createEsmAndCjsTests } from '../../../utils/runner';
+import { cleanupChildProcesses, createEsmAndCjsTests } from '../../../utils/runner';
4
5
describe('postgres auto instrumentation', () => {
6
+ afterAll(() => {
7
+ cleanupChildProcesses();
8
+ });
9
+
10
describe('default', () => {
11
const EXPECTED_TRANSACTION = {
12
transaction: 'Test Transaction',
0 commit comments