-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcatch.js
47 lines (40 loc) · 1.84 KB
/
catch.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import describe from 'tape-bdd';
import transmute from 'transmutation';
const promise = new Promise(res => res({ test: 'promise' }));
describe('Catch Operator', (it) => {
it.skip('catches a normal promise error', assert => transmute('roar')
.extend(() => { throw new Error('trap'); })
.then()
.catch(err => assert.deepEqual(err.message, 'trap'))
);
it.skip('catches a normal promise error, with value at the time', assert => transmute('roar')
.extend(() => { throw new Error('trap'); })
.then()
.catch(err => assert.deepEqual(err.value, 'roar'))
);
it('catches a normal promise error, with value at the time after extending', assert => transmute({ test: 'roar' })
.extend({ roar: 'test' })
.extend(() => { throw new Error('trap'); })
.then()
.catch(err => assert.deepEqual(err.value, { test: 'roar', roar: 'test' }))
);
// TODO: Figure out how to handle an already rejected promise
it.skip('catches a promise error in an extend', assert => transmute({ test: 'roar' })
.extend(promise.then(() => { throw new Error('trap'); }))
.then()
.catch(err => assert.deepEqual(err.value, { test: 'roar' }))
);
// TODO: Figure out how to handle an already rejected promise
it.skip('catches a promise error in an extend with a path', assert => transmute({ test: 'roar' })
.extend('testing.stuff', promise.then(() => { throw new Error('trap'); }))
.then()
.catch(err => assert.deepEqual(err.value, { test: 'roar' }))
);
it.skip('catches a transmutation error in an extend', assert => transmute({ test: 'roar' })
.extend(p => transmute(p)
.extend(() => { throw new Error('trap'); })
)
.then()
.catch(err => assert.deepEqual(err.value, { test: 'roar' }))
);
});