Skip to content

Commit

Permalink
test(internal): add missing use strict directives (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs authored Oct 28, 2023
1 parent 9048df4 commit 7dbb054
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/internal/appInitializer.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

const fastify = require('fastify')
const { fastifyRequestContextPlugin } = require('../..')

Expand Down
2 changes: 2 additions & 0 deletions test/internal/testService.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
'use strict'

const { requestContext } = require('../..')

// Test class to check if nested calls with promises work correctly with async local storage
Expand Down

0 comments on commit 7dbb054

Please sign in to comment.