mirror of
https://github.com/sasjs/server.git
synced 2025-12-10 11:24:35 +00:00
test(deploy): fix payload
This commit is contained in:
@@ -74,7 +74,9 @@ describe('deploy', () => {
|
||||
})
|
||||
|
||||
it('should respond with payload example if valid payload was not provided', async () => {
|
||||
const res = await request(app).post('/deploy').send(getTreeExample())
|
||||
const res = await request(app)
|
||||
.post('/deploy')
|
||||
.send({ fileTree: getTreeExample() })
|
||||
|
||||
expect(res.statusCode).toEqual(200)
|
||||
expect(res.text).toEqual(
|
||||
|
||||
Reference in New Issue
Block a user