Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

easy-sauce

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easy-sauce - npm Package Compare versions

Comparing version 0.3.3 to 0.3.4

3

lib/cli.js

@@ -57,2 +57,5 @@ 'use strict';

return easySauce(Object.assign(configOpts, cliOpts))
.on('message', (message) => {
log(chalk.gray(message));
})
.on('update', (job) => {

@@ -59,0 +62,0 @@ log(chalk.gray(`${formatPlatform(job.platform)}: ${job.status}`));

2

package.json
{
"name": "easy-sauce",
"version": "0.3.3",
"version": "0.3.4",
"description": "Simple JavaScript unit testing on the Sauce Labs cloud",

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

@@ -144,2 +144,7 @@ # Easy Sauce

<tr valign="top">
<td><code>message</code></td>
<td><code>message</code> (string) The message text.</td>
<td>Emitted when an event has occurred that may be useful for the user to know (e.g. the public URL of the tests after an ngrok tunnel has been created).</td>
</tr>
<tr valign="top">
<td><code>update</code></td>

@@ -190,2 +195,6 @@ <td><code>job</code> (Object) The updated JSON job data from Sauce Labs.</td>

})
.on('message', function(message) {
// A message has been emitted, inform the user.
console.log(message);
})
.on('update', function(job) {

@@ -192,0 +201,0 @@ // A job's status has been updated

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc