Skip to content

Commit 8f13a9e

Browse files
chore(deps-dev): bump prettier from 3.0.2 to 3.0.3 (#3607)
1 parent b8df297 commit 8f13a9e

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/instrumentation/modules/next/next.test.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -792,10 +792,9 @@ tape.test(
792792

793793
tape.test('setup: filter TEST_REQUESTS', (t) => {
794794
// This version can only be fetched after the above `npm ci`.
795-
nextJsVersion = require(path.join(
796-
testAppDir,
797-
'node_modules/next/package.json',
798-
)).version;
795+
nextJsVersion = require(
796+
path.join(testAppDir, 'node_modules/next/package.json'),
797+
).version;
799798

800799
// Some entries in TEST_REQUESTS are only run for newer versions of Next.js.
801800
TEST_REQUESTS = TEST_REQUESTS.filter((testReq) => {

test/lambda/wrap-bundled-handler.test.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,9 @@ tape.test(
4444
// Load express after the agent has started.
4545
const express = require('express');
4646

47-
const handler = require(path.join(
48-
__dirname,
49-
'fixtures/esbuild-bundled-handler/hello',
50-
)).main;
47+
const handler = require(
48+
path.join(__dirname, 'fixtures/esbuild-bundled-handler/hello'),
49+
).main;
5150
t.equals(
5251
handler.name,
5352
'wrappedLambdaHandler',

0 commit comments

Comments
 (0)