You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

playwright-mail-reporter

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

playwright-mail-reporter - npm Package Compare versions

Comparing version

to
0.0.3

4

CHANGELOG.md

@@ -5,2 +5,6 @@ # Changelog

## [0.0.3]
- Combine failed and timeout to get the total number of failed tests
## [0.0.2]

@@ -7,0 +11,0 @@

3

dist/utils/processResults.js

@@ -40,3 +40,4 @@ "use strict";

}
const hasFailed = totalStatus.failed > 0;
const totalFailed = totalStatus.failed + totalStatus.timedOut;
const hasFailed = totalFailed > 0;
if (!options.mailOnFailure && hasFailed) {

@@ -43,0 +44,0 @@ console.log("Not sending email on failure");

{
"name": "playwright-mail-reporter",
"version": "0.0.2",
"version": "0.0.3",
"description": "Mail reporter for Playwright powered by Resend",

@@ -5,0 +5,0 @@ "main": "dist/index.js",