mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.2 KiB
30 lines
1.2 KiB
[ |
|
{ |
|
"description": "battleCry is defined and is a function", |
|
"code": "equal(typeof battleCry, 'function')" |
|
}, |
|
{ |
|
"description": "secretOrders is defined and is a function", |
|
"code": "equal(typeof secretOrders, 'function')" |
|
}, |
|
{ |
|
"description": "battleCry has one and only one argument", |
|
"code": "equal(battleCry.length, 1)" |
|
}, |
|
{ |
|
"description": "secretOrders has one and only one argument", |
|
"code": "equal(secretOrders.length, 1)" |
|
}, |
|
{ |
|
"description": "battleCry shouts properly", |
|
"code": "const args = saveArguments(console, 'log')\n// Your code\n\nbattleCry('attack')\nbattleCry('you shall not pass!')\n\nequal(args.flat(), ['ATTACK', 'YOU SHALL NOT PASS!'])" |
|
}, |
|
{ |
|
"description": "secretOrders whispers properly", |
|
"code": "const args = saveArguments(console, 'log')\n\n// Your code\n\nsecretOrders('ExEcutE Order 66')\nsecretOrders('SILENCE')\n\nequal(args.flat(), ['execute order 66', 'silence'])" |
|
}, |
|
{ |
|
"description": "We can call both functions", |
|
"code": "const args = saveArguments(console, 'log')\n\n// Your code\n\nsecretOrders('This Is The WAY')\nbattleCry('for the horde !')\n\nequal(args.flat(), ['this is the way', 'FOR THE HORDE !'])" |
|
} |
|
] |