Skip to content

Commit 190903a

Browse files
committed
fix import
1 parent bafd05f commit 190903a

File tree

2 files changed

+3
-3
lines changed
  • dev-packages/node-integration-tests/suites/express/with-http

2 files changed

+3
-3
lines changed

dev-packages/node-integration-tests/suites/express/with-http/base/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { afterAll, describe } from 'vitest';
2-
import { cleanupChildProcesses, createEsmAndCjsTests } from '../../../utils/runner';
2+
import { cleanupChildProcesses, createEsmAndCjsTests } from '../../../../utils/runner';
33

44
describe('express with http import', () => {
55
afterAll(() => {

dev-packages/node-integration-tests/suites/express/with-http/maxRequestBodySize/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ describe('express with httpIntegration and maxRequestBodySize: "none"', () => {
7070
'scenario.mjs',
7171
'instrument-none.mjs',
7272
(createRunner, test) => {
73-
test('does not capture any request bodies with none setting', async () => {
73+
test('does not capture any request bodies with "none" setting', async () => {
7474
const runner = createRunner()
7575
.expect({
7676
transaction: {
@@ -90,7 +90,7 @@ describe('express with httpIntegration and maxRequestBodySize: "none"', () => {
9090
await runner.completed();
9191
});
9292

93-
test('does not capture any request bodies with none setting and "ignoreIncomingRequestBody"', async () => {
93+
test('does not capture any request bodies with "none" setting and "ignoreIncomingRequestBody"', async () => {
9494
const runner = createRunner()
9595
.expect({
9696
transaction: {

0 commit comments

Comments
 (0)