froth-webdriverio-framework 3.0.20 → 3.0.21
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/config/commonconfig.js +1 -1
- package/package.json +1 -1
package/config/commonconfig.js
CHANGED
|
@@ -117,7 +117,7 @@ const commonconfig = {
|
|
|
117
117
|
console.log('All tests are done.' + result);
|
|
118
118
|
|
|
119
119
|
|
|
120
|
-
const totalDefinedTests = config.specs.length; // Total test files/specs defined
|
|
120
|
+
const totalDefinedTests = exports.config.specs.length; // Total test files/specs defined
|
|
121
121
|
const executedTests = result.finished; // Tests that were executed
|
|
122
122
|
const passedTests = result.passed;
|
|
123
123
|
const failedTests = result.failed;
|