cypress-smart-logs
Advanced tools
Comparing version 0.0.4 to 0.0.5
{ | ||
"name": "cypress-smart-logs", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "Cypress plugin to enhance work with logs.", | ||
@@ -8,3 +8,4 @@ "main": "index", | ||
"test": "npx cypress run", | ||
"test-open": "npx cypress open" | ||
"test-open": "npx cypress open", | ||
"build-plugin": "npx tsc ./plugin/plugin.ts" | ||
}, | ||
@@ -14,3 +15,3 @@ "author": "keeema", | ||
"dependencies": { | ||
"cypress": "^7.0.0 || ^8.0.1" | ||
"cypress": "^8.0.1" | ||
}, | ||
@@ -17,0 +18,0 @@ "devDependencies": { |
@@ -1,3 +0,1 @@ | ||
import _ = require("cypress/types/lodash"); | ||
export interface IWithText { | ||
@@ -4,0 +2,0 @@ getText: string; |
@@ -15,3 +15,3 @@ export class LogsWrapper implements Cypress.Log { | ||
error(error: Error): Cypress.Log { | ||
this.loggers.forEach((log) => log.error(error)); | ||
this.loggers.forEach((log) => log.error && log.error(error)); | ||
return this; | ||
@@ -18,0 +18,0 @@ } |
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
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
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
18638
20
489
2
Updatedcypress@^8.0.1