Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Jayson Harshbarger committed Oct 18, 2024
1 parent f405abd commit 1401043
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/smoke.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function createServer(options) {
.set('port', options.port)
.set('host', options.host)
.use(bodyParser.urlencoded({extended: true}))
.use(bodyParser.json({ strict: false }))
.use(bodyParser.json({strict: false}))
.use(multer().any());

let allowedOrigins = options.cors ? options.cors.split(',') : [];
Expand Down

0 comments on commit 1401043

Please sign in to comment.