本文整理汇总了TypeScript中sush.flow函数的典型用法代码示例。如果您正苦于以下问题:TypeScript flow函数的具体用法?TypeScript flow怎么用?TypeScript flow使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了flow函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('dose nothing if argument is none', (done) => {
sush.flow([
SUSHPluginAddObject()
])
.then(() => {
done();
})
.catch((err) => done(err));
});
示例2: it
it('throws Error when sheetUrl is invalid URL', (done) => {
sush.flow([
SUSHPluginSpreadsheet({ sheetUrl: 'https://example.com' })
])
.catch((err: Error) => {
assert.equal(err.message, 'sheetUrl is invalid.');
done();
})
.catch((err) => done(err));
});
示例3: it
it('throws error if not match and not set fallback', (done) => {
sush.flow([
SUSHPluginRedirect()
])
.catch((err: Error) => {
assert.ok(err.message.match(/not found/));
done();
})
.catch((err) => done(err));
});
示例4: it
it('does nothing when analyticsId is none', (done) => {
sush.flow([
SUSHPluginGoogleAnalytics()
])
.then(() => {
// never calls ga
td.verify(ga(), { times: 0, ignoreExtraArgs: true });
done();
})
.catch((err) => done(err));
});
示例5: it
it('trims tail of id if tail param is avaliable', (done) => {
const expected = '/exam';
sush.flow([
SUSHPluginTrimId({ tail: 3 }),
({ id: actual, stock }) => {
assert.strictEqual(actual, expected);
return { id: actual, stock };
}
])
.then(() => done())
.catch((err) => done(err));
});