testaro 60.2.1 → 60.4.0

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.
package/testaro/zIndex.js CHANGED
@@ -35,7 +35,7 @@
35
35
  // ########## IMPORTS
36
36
 
37
37
  // Module to perform common operations.
38
- const {init, report} = require('../procs/testaro');
38
+ const {init, getRuleResult} = require('../procs/testaro');
39
39
 
40
40
  // ########## FUNCTIONS
41
41
 
@@ -61,5 +61,5 @@ exports.reporter = async (page, withItems) => {
61
61
  const whats = [
62
62
  'Element has a non-default Z index (__param__)', 'Elements have non-default Z indexes'
63
63
  ];
64
- return await report(withItems, all, 'zIndex', whats, 0);
64
+ return await getRuleResult(withItems, all, 'zIndex', whats, 0);
65
65
  };