first-base 2.0.0 → 2.0.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/dist/index.js +4 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -204,6 +204,10 @@ var spawn = function spawn(cmd, argsOrOptions, passedOptions) {
204
204
  finish("exited");
205
205
  });
206
206
  child.once("error", function (error) {
207
+ if (_typeof(error) === "object" && error !== null && error.code === "EIO") {
208
+ // not real; process is about to exit
209
+ return;
210
+ }
207
211
  runContext.result.error = error;
208
212
  finish("errored");
209
213
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "first-base",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "Integration testing for CLI applications",
5
5
  "main": "dist/index.js",
6
6
  "repository": {