generated from ehmicky/template-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.test.js
32 lines (26 loc) · 830 Bytes
/
main.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import test from 'ava'
import ModernError from 'modern-errors'
import modernErrorsHttp from 'modern-errors-http'
export const BaseError = ModernError.subclass('BaseError', {
plugins: [modernErrorsHttp],
})
export const baseError = new BaseError('test')
test('Options are validated', (t) => {
t.throws(BaseError.httpResponse.bind(undefined, baseError, { title: true }))
})
test('Valid options are kept', (t) => {
t.is(
BaseError.httpResponse(baseError, { title: 'testTitle' }).title,
'testTitle',
)
})
test('Assign default options', (t) => {
t.deepEqual(BaseError.httpResponse(baseError), {
title: baseError.name,
detail: baseError.message,
stack: baseError.stack,
})
})
test('Can be called as error.httpResponse()', (t) => {
t.is(BaseError.httpResponse(baseError).title, baseError.name)
})