import { Assert, UnitTest } from '@ephox/bedrock-client'; import { Chain } from 'ephox/agar/api/Chain'; import { NamedChain } from 'ephox/agar/api/NamedChain'; import { TestLogs } from 'ephox/agar/api/TestLogs'; UnitTest.asynctest('NamedChainPipelineTest', (success, failure) => { const cAcc = (ch: number) => Chain.async((input: number, next, _die) => { next(input + ch); }); NamedChain.pipeline([ NamedChain.writeValue('value', 1), NamedChain.overwrite('value', cAcc(2)), NamedChain.overwrite('value', cAcc(3)), NamedChain.output('value') ], (result) => { try { Assert.eq('Expected result to be the sum', 6, result); success(); } catch (err) { failure(err); } }, failure, TestLogs.init()); });