testilo 25.0.1 → 25.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/call.js +1 -7
  2. package/package.json +2 -2
package/call.js CHANGED
@@ -242,13 +242,7 @@ const callCredit = async (tallyID, selector = '') => {
242
242
  // ########## OPERATION
243
243
 
244
244
  // Execute the requested function.
245
- if (fn === 'aim' && fnArgs.length === 5) {
246
- callAim(... fnArgs)
247
- .then(() => {
248
- console.log('Execution completed');
249
- });
250
- }
251
- else if (fn === 'batch' && fnArgs.length === 2) {
245
+ if (fn === 'batch' && fnArgs.length === 2) {
252
246
  callBatch(... fnArgs)
253
247
  .then(() => {
254
248
  console.log('Execution completed');
package/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "testilo",
3
- "version": "25.0.1",
3
+ "version": "25.0.2",
4
4
  "description": "Prepares and processes Testaro reports",
5
- "main": "aim.js",
5
+ "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1"
8
8
  },