Skip to content

Commit 38ed9fc

Browse files
committed
add missing cleanup
1 parent 819129e commit 38ed9fc

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

  • dev-packages/node-integration-tests/suites/tracing/postgres

dev-packages/node-integration-tests/suites/tracing/postgres/test.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
import { describe, expect } from 'vitest';
1+
import { afterAll, describe, expect } from 'vitest';
22
import { conditionalTest } from '../../../utils';
3-
import { createEsmAndCjsTests } from '../../../utils/runner';
3+
import { cleanupChildProcesses, createEsmAndCjsTests } from '../../../utils/runner';
44

55
describe('postgres auto instrumentation', () => {
6+
afterAll(() => {
7+
cleanupChildProcesses();
8+
});
9+
610
describe('default', () => {
711
const EXPECTED_TRANSACTION = {
812
transaction: 'Test Transaction',

0 commit comments

Comments
 (0)