ui5-test-runner 5.13.0 → 5.13.1

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/package.json +1 -1
  2. package/src/start.js +5 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ui5-test-runner",
3
- "version": "5.13.0",
3
+ "version": "5.13.1",
4
4
  "description": "Standalone test runner for UI5",
5
5
  "main": "index.js",
6
6
  "bin": {
package/src/start.js CHANGED
@@ -53,7 +53,11 @@ async function start (job) {
53
53
  const startProcess = spawn(command, parameters, {
54
54
  cwd: job.cwd,
55
55
  windowsHide: true,
56
- detached: true
56
+ detached: true,
57
+ env: {
58
+ ...process.env,
59
+ ...job.env
60
+ }
57
61
  })
58
62
  startProcess.on('close', () => {
59
63
  output.debug('start', 'Start command process exited')