Socket
Socket
Sign inDemoInstall

domsuite

Package Overview
Dependencies
19
Maintainers
9
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.1-0 to 0.1.1-2

4

compiled/index.js

@@ -110,3 +110,3 @@ 'use strict';

throw new Error('Retryable did not complete in allocated time:\n' + error.stack + '\n' + ('Failing function:\n' + retryableFunc.toString()));
throw new Error('Retryable did not complete in allocated time:\n' + error.stack + '\n\n' + ('Failing function:\n' + retryableFunc.toString() + '\n'));

@@ -189,3 +189,3 @@ case 14:

throw new Error('Condition was not met in allocated time:\n' + (error && error.stack) + '\n' + ('Failing function:\n' + predicate.toString()));
throw new Error('Condition was not met in allocated time:\n' + (error && error.stack) + '\n\n' + ('Failing function:\n' + predicate.toString() + '\n'));

@@ -192,0 +192,0 @@ case 17:

@@ -97,4 +97,4 @@ import isEmpty from 'lodash/isEmpty';

throw new Error(
`Retryable did not complete in allocated time:\n${error.stack}\n` +
`Failing function:\n${retryableFunc.toString()}`
`Retryable did not complete in allocated time:\n${error.stack}\n\n` +
`Failing function:\n${retryableFunc.toString()}\n`
);

@@ -122,4 +122,4 @@ }

throw new Error(
`Condition was not met in allocated time:\n${error && error.stack}\n` +
`Failing function:\n${predicate.toString()}`);
`Condition was not met in allocated time:\n${error && error.stack}\n\n` +
`Failing function:\n${predicate.toString()}\n`);
}

@@ -126,0 +126,0 @@ await sleep(25);

{
"name": "domsuite",
"version": "0.1.1-0",
"version": "0.1.1-2",
"description": "Browser testing/automation utilities with async/await",

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

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