Skip to content

Commit

Permalink
chore(deps-dev): bump prettier from 3.0.2 to 3.0.3 (#3607)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Sep 7, 2023
1 parent b8df297 commit 8f13a9e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions test/instrumentation/modules/next/next.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -792,10 +792,9 @@ tape.test(

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

// Some entries in TEST_REQUESTS are only run for newer versions of Next.js.
TEST_REQUESTS = TEST_REQUESTS.filter((testReq) => {
Expand Down
7 changes: 3 additions & 4 deletions test/lambda/wrap-bundled-handler.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,9 @@ tape.test(
// Load express after the agent has started.
const express = require('express');

const handler = require(path.join(
__dirname,
'fixtures/esbuild-bundled-handler/hello',
)).main;
const handler = require(
path.join(__dirname, 'fixtures/esbuild-bundled-handler/hello'),
).main;
t.equals(
handler.name,
'wrappedLambdaHandler',
Expand Down

0 comments on commit 8f13a9e

Please sign in to comment.