artillery-plugin-expect
Advanced tools
Comparing version 2.0.0-2 to 2.0.0-3
@@ -23,3 +23,3 @@ /* This Source Code Form is subject to the terms of the Mozilla Public | ||
if (typeof process.env.WORKER_ID === 'undefined') { | ||
if (typeof process.env.LOCAL_WORKER_ID === 'undefined') { | ||
debug('Not running in a worker, exiting'); | ||
@@ -125,2 +125,4 @@ return; | ||
events.emit('plugin:expect:expectations', requestExpectations); | ||
const formatterName = userContext.expectationsPlugin.formatter; | ||
@@ -127,0 +129,0 @@ FORMATTERS[formatterName].call( |
{ | ||
"name": "artillery-plugin-expect", | ||
"version": "2.0.0-2", | ||
"version": "2.0.0-3", | ||
"description": "Expectations and assertions for HTTP", | ||
@@ -22,3 +22,3 @@ "main": "index.js", | ||
"@commitlint/config-conventional": "^13.1.0", | ||
"artillery": "^2.0.0-dev10", | ||
"artillery": "^2.0.0-2", | ||
"ava": "^3.15.0", | ||
@@ -25,0 +25,0 @@ "husky": "^7.0.2", |
@@ -202,6 +202,5 @@ 'use strict'; | ||
const output = result.stdout; | ||
console.log(output); | ||
t.true(output.indexOf('plugins.expect') > -1); | ||
t.true(output.indexOf('expect.ok') > -1); | ||
t.true(result.code === 0); | ||
}); |
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
280335