Socket
Socket
Sign inDemoInstall

puppetarazzi

Package Overview
Dependencies
135
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.2.22 to 0.2.23

saved/desktop-1024-1024x768/credits-atf.png

4

package.json
{
"name": "puppetarazzi",
"version": "0.2.22",
"version": "0.2.23",
"description": "Takes screenshots of your website and annoys you by pointing out your flaws (mixed-content, uncompressed content, 404s, etc)\"",

@@ -29,3 +29,3 @@ "main": "index.js",

"open-graph-scraper": "^3.1.5",
"puppeteer": "^1.1.1",
"puppeteer": "^3.0.2",
"request-promise-native": "^1.0.5"

@@ -32,0 +32,0 @@ },

# Puppetarazzi
v0.2.22
v0.2.23

@@ -217,2 +217,4 @@ Copyright 2020 Nic Jansma

* v0.2.23 - 2020-05-05
* Option `waitUntil` (puppet option) at global or page level
* v0.2.22 - 2020-05-05

@@ -219,0 +221,0 @@ * `har`: Upgrade `chrome-har` dependency to avoid exception

@@ -45,2 +45,5 @@ //

// how long we wait for the page to load
let waitUntil = this.config.waitUntil || ["networkidle0", "load"];
// test each device individually

@@ -96,3 +99,3 @@ for (let device of this.config.devices) {

await page.goto(url, {
waitUntil: ["networkidle0", "load"]
waitUntil: pageDefinition.waitUntil || waitUntil
});

@@ -152,3 +155,3 @@ } catch (e) {

await page.goto(url, {
waitUntil: ["networkidle0", "load"]
waitUntil: pageDefinition.waitUntil || waitUntil
});

@@ -155,0 +158,0 @@ } catch (e) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc