@communicatehealth/browsertests
Advanced tools
Comparing version 1.0.7 to 1.0.8
# Changelog | ||
## 1.0.8 | ||
- Fix error when running core and php version checks | ||
## 1.0.7 | ||
@@ -4,0 +8,0 @@ |
@@ -32,3 +32,2 @@ /** | ||
dblog = require('./dblog.js'); | ||
var tests; | ||
console.log( | ||
@@ -42,5 +41,6 @@ "\x1b[7m%s\x1b[0m", | ||
.then((moduleList) => { | ||
var promise = Promise.resolve(), | ||
tests; | ||
options.moduleList = moduleList; | ||
tests = resolveTests(options) | ||
var promise = Promise.resolve(); | ||
tests.forEach((test) => { | ||
@@ -62,3 +62,3 @@ promise = promise | ||
if (options.core || options.php) { | ||
tests.push(require("./core_status.js")) | ||
tests.push({name: "core", exec: require("./core_status.js")}); | ||
} | ||
@@ -65,0 +65,0 @@ if (options.modules) { |
{ | ||
"name": "@communicatehealth/browsertests", | ||
"version": "1.0.7", | ||
"version": "1.0.8", | ||
"description": "Testing framework for testing Drupal sites using Selenium", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
43185