Skip to content

Commit e698018

Browse files
committed
autoformat nextjs integration test files
1 parent b798cd8 commit e698018

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

packages/nextjs/test/integration/next.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ const { withSentryConfig } = require('@sentry/nextjs');
33
const moduleExports = {
44
eslint: {
55
ignoreDuringBuilds: true,
6-
}
6+
},
77
};
88
const SentryWebpackPluginOptions = {
99
dryRun: true,

packages/nextjs/test/integration/test/server/tracingHttp.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@ module.exports = async ({ url: urlBase, argv }) => {
99
const url = `${urlBase}/api/http`;
1010

1111
// this intercepts the outgoing request made by the route handler (which it makes in order to test span creation)
12-
nock('http://example.com')
13-
.get('/')
14-
.reply(200, 'ok');
12+
nock('http://example.com').get('/').reply(200, 'ok');
1513

1614
const capturedRequest = interceptTracingRequest(
1715
{

0 commit comments

Comments
 (0)