@communicatehealth/browsertests
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -5,2 +5,6 @@ # Changelog | ||
- Fixed --strict option for checking console errors. | ||
## 1.0.3 | ||
- Fixes for running sites with form-based auth. | ||
@@ -7,0 +11,0 @@ |
@@ -160,2 +160,3 @@ /** | ||
console.log("Option: --loginPass=[Drupal login password]") | ||
console.log("Option: --strict if set, capture console errors") | ||
console.log("Other options may be specified in tests:"); | ||
@@ -162,0 +163,0 @@ tests.forEach((test) => { |
{ | ||
"name": "@communicatehealth/browsertests", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Testing framework for testing Drupal sites using Selenium", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -22,3 +22,3 @@ // Look for a variety of errors | ||
entries.forEach(function(entry) { | ||
if(!entry.message.indexOf("Unrecognized feature: 'interest-cohort'")) { | ||
if(!entry.message.includes("Unrecognized feature: 'interest-cohort'")) { | ||
console.log('[%s] %s', entry.level.name, entry.message); | ||
@@ -25,0 +25,0 @@ if (entry.level.value > 900) { |
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
40900
973