-
Notifications
You must be signed in to change notification settings - Fork 0
Script showcase
Francesco Bianco edited this page Oct 7, 2016
·
4 revisions
a collection of scripts for every king of situation
run sequentially a lot of process chained by next-callback parameters, use it for scripting user-interface testing
const jj = require('jazz.js');
// ultra-compat stack
jj.script([
a => ProcessTaskOneCallbackAtEnd(a),
b => ProcessTaskTwoCallbackAtEnd(b),
c => ProcessTaskThreeCallbackAtEnd(c),
d => ProcessTaskFourCallbackAtEnd(d),
e => ProcessTaskFiveCallbackAtEnd(e),
]);