Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Lms24 committed Sep 18, 2024
1 parent ef9aa48 commit d3aa88c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const express = require('express');

const app = express();

app.get('/test', (_req, res) => {
app.get('/test', () => {
throw new Error('test error');
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ describe('errors in TwP mode have same trace in trace context and getTraceData()
});

test('in incoming request', async () => {
const runner = createRunner(__dirname, 'server.js')
createRunner(__dirname, 'server.js')
.expect({
event: event => {
const { contexts } = event;
Expand Down

0 comments on commit d3aa88c

Please sign in to comment.