@artilleryio/int-core 2.15.0-df428ce → 2.15.0-e6063d6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/runner.js +0 -9
  2. package/package.json +3 -4
package/lib/runner.js CHANGED
@@ -10,11 +10,8 @@ const _ = require('lodash');
10
10
  const debug = require('debug')('runner');
11
11
  const debugPerf = require('debug')('perf');
12
12
  const uuidv4 = require('uuid').v4;
13
- const A = require('async');
14
13
  const { SSMS } = require('./ssms');
15
- const tryResolve = require('try-require').resolve;
16
14
  const createPhaser = require('./phases');
17
- const isIdlePhase = require('./is-idle-phase');
18
15
  const createReader = require('./readers');
19
16
  const engineUtil = require('@artilleryio/int-commons').engine_util;
20
17
  const wl = require('./weighted-pick');
@@ -223,15 +220,9 @@ function run(script, ee, options, runState, contextVars) {
223
220
  });
224
221
  phaser.on('phaseStarted', function (spec) {
225
222
  ee.emit('phaseStarted', spec);
226
- if (isIdlePhase(spec)) {
227
- ee.emit('stats', SSMS.empty());
228
- }
229
223
  });
230
224
  phaser.on('phaseCompleted', function (spec) {
231
225
  ee.emit('phaseCompleted', spec);
232
- if (isIdlePhase(spec)) {
233
- ee.emit('stats', SSMS.empty());
234
- }
235
226
  });
236
227
  phaser.on('done', function () {
237
228
  debug('All phases launched');
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@artilleryio/int-core",
3
- "version": "2.15.0-df428ce",
3
+ "version": "2.15.0-e6063d6",
4
4
  "main": "./index.js",
5
5
  "license": "MPL-2.0",
6
6
  "dependencies": {
7
- "@artilleryio/int-commons": "2.11.0-df428ce",
7
+ "@artilleryio/int-commons": "2.11.0-e6063d6",
8
8
  "@artilleryio/sketches-js": "^2.1.1",
9
9
  "agentkeepalive": "^4.1.0",
10
10
  "arrivals": "^2.1.2",
@@ -31,7 +31,6 @@
31
31
  "socket.io-client": "^4.5.1",
32
32
  "socketio-wildcard": "^2.0.0",
33
33
  "tough-cookie": "^5.0.0-rc.2",
34
- "try-require": "^1.2.1",
35
34
  "uuid": "^8.0.0",
36
35
  "ws": "^7.5.7"
37
36
  },
@@ -58,7 +57,7 @@
58
57
  "proxy": "^2.1.1",
59
58
  "rewiremock": "^3.14.3",
60
59
  "sinon": "^4.5.0",
61
- "socket.io": "^4.7.1",
60
+ "socket.io": "^4.8.0",
62
61
  "tap": "^19.0.2"
63
62
  }
64
63
  }