browser-ava 1.3.29 → 1.3.30

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browser-ava",
3
- "version": "1.3.29",
3
+ "version": "1.3.30",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -299,6 +299,7 @@ function testContext(def, parentContext) {
299
299
  });
300
300
  } catch (e) {
301
301
  throwsExpectationHandler(e, expectation, title);
302
+ return e;
302
303
  }
303
304
  },
304
305
 
@@ -312,6 +313,7 @@ function testContext(def, parentContext) {
312
313
  });
313
314
  } catch (e) {
314
315
  throwsExpectationHandler(e, expectation, title);
316
+ return e;
315
317
  }
316
318
  },
317
319