Fixes #16 Add update specific omit inputs

This commit is contained in:
Nick Cipollo
2020-05-26 13:33:20 -04:00
parent 05b0499270
commit 6f236bd2ff
9 changed files with 226 additions and 85 deletions

View File

@@ -30,7 +30,6 @@ describe('ErrorMessage', () => {
})
it('generates message with errors', () => {
const resource = "release"
const error = {
message: 'something bad happened',
errors: [
@@ -68,4 +67,4 @@ describe('ErrorMessage', () => {
const errorMessage = new ErrorMessage(error)
expect(errorMessage.status).toBe(404)
})
})
})