This repository has been archived on 2022-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
cic-ussd-e2e/src/scenario.js

17 lines
463 B
JavaScript
Raw Normal View History

2022-03-28 13:03:06 +02:00
module.exports = {
reset_pin: function (input) {
return [
{ input: `` },
{ input: `3` },
{ input: `3*5` },
{ input: `3*5*1` },
{ input: `3*5*1*${input.current_pin}` },
{ input: `3*5*1*${input.current_pin}*${input.new_pin}` },
{ input: `3*5*1*${input.current_pin}*${input.new_pin}*${input.new_pin}` },
{
input: `3*5*1*${input.current_pin}*${input.new_pin}*${input.new_pin}*99`,
},
];
},
};