wdio-spec-reporter
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -206,2 +206,7 @@ 'use strict'; | ||
for (var testUid in spec.tests) { | ||
// Remove "before all" tests from the displayed results | ||
if (specUid.indexOf('"before all"') === 0) { | ||
continue; | ||
} | ||
var test = spec.tests[testUid]; | ||
@@ -208,0 +213,0 @@ var testTitle = spec.tests[testUid].title; |
@@ -157,2 +157,7 @@ import events from 'events' | ||
for (const testUid in spec.tests) { | ||
// Remove "before all" tests from the displayed results | ||
if (specUid.indexOf('"before all"') === 0) { | ||
continue | ||
} | ||
const test = spec.tests[testUid] | ||
@@ -159,0 +164,0 @@ const testTitle = spec.tests[testUid].title |
{ | ||
"name": "wdio-spec-reporter", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "A WebdriverIO plugin. Report results in 'spec' format.", | ||
@@ -67,6 +67,7 @@ "main": "build/reporter.js", | ||
"W. van Kuipers <w.vankuipers@lukkien.com>", | ||
"christian-bromann <mail@christian-bromann.com>", | ||
"Tim Brust <tim.brust@sinnerschrader.com>", | ||
"Tim Brust <ratchet.player@gmx.de>", | ||
"George Crawford <g.o.crawford@gmail.com>", | ||
"Tim Brust <tim.brust@sinnerschrader.com>" | ||
"George Crawford <g.o.crawford@gmail.com>" | ||
] | ||
} |
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
40427
946