Skip to content

Commit

Permalink
push changes
Browse files Browse the repository at this point in the history
  • Loading branch information
madaley1 committed Nov 21, 2023
1 parent dec8ce3 commit 190e72f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/forward-webhook/tests/forward-webhook.e2e.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ describe('forward-webhook() e2e', () => {

beforeEach(async () => {
console.log(`Starting temporary server on port ${port}`)
server = startServer(app, port, { message: 'Hello World!' })
server = startServer(app, port, { message: 'Hello World test!' })

console.log('Setting up temporary Space and Retrieving spaceId')
const space = await setupSpace()
Expand Down
3 changes: 2 additions & 1 deletion utils/testing/src/test.server.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Express, json } from 'express'
import { Express, json, urlencoded } from 'express'

import http from 'http'

Expand All @@ -7,6 +7,7 @@ export const startServer = (
port: number,
data?: any
): http.Server => {
app.use(urlencoded({ extended: false }))
app.use(json())

app
Expand Down

0 comments on commit 190e72f

Please sign in to comment.