Skip to content
This repository has been archived by the owner on May 28, 2018. It is now read-only.

Commit

Permalink
Test default successful send behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
nbrohee committed Mar 1, 2017
1 parent db6e88d commit 6634459
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions server/api/application/test/application.api.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,5 +225,13 @@ describe('api: application', () => {
.expect(400, done)
})
})

describe('When the application has been saved', () => {
it('should return a 200', (done) => {
supertest(app)
.put('/api/application/9c9d6a6b832effc406059b15/send')
.expect(200, done)
})
})
})
})

0 comments on commit 6634459

Please sign in to comment.