-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdo.js
54 lines (47 loc) · 2.1 KB
/
do.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
48
49
50
51
52
53
54
import describe from 'tape-bdd';
import transmute from 'transmutation';
describe('Do Operator', (it) => {
it('allows a side effect with the base value', assert => transmute({ parameter: 'roar' })
.do(({ parameter }) => assert.equal(parameter, 'roar'))
.then()
);
it('allows a side effect without changing anything', assert => transmute({ parameter: 'roar' })
.do(() => ({ returning: 'does nothing' }))
.then(value => assert.deepEqual(value, { parameter: 'roar' }))
);
it('executes side effect with scoped path', assert => transmute({ testing: { parameter: 'roar' } })
.do('testing.parameter', parameter => assert.equal(parameter, 'roar'))
.then()
);
it('executes side effect with scoped path and still not changing anything', assert => transmute({ testing: { parameter: 'roar' } })
.do('testing.parameter', () => ({ returning: 'does nothing' }))
.then(value => assert.deepEqual(value, { testing: { parameter: 'roar' } }))
);
it('allows a delayed side effect with the base value', (assert) => {
let ran = false;
return transmute({ parameter: 'roar' })
.do(new Promise(res => setTimeout(() => {
ran = true;
res();
}, 0)))
.then(() => assert.equal(ran, true));
});
it('allows a function that returns a delayed side effect with the base value', (assert) => {
let ran = false;
return transmute({ parameter: 'roar' })
.do(() => new Promise(res => setTimeout(() => {
ran = true;
res();
}, 0)))
.then(() => assert.equal(ran, true));
});
it('allows a function that returns a delayed side effect with a scoped value', (assert) => {
let delayedResult = 'notChanged';
return transmute({ parameter: 'scoped' })
.do('parameter', parameter => new Promise(res => setTimeout(() => {
delayedResult = parameter;
res();
}, 0)))
.then(() => assert.equal(delayedResult, 'scoped'));
});
});