Skip to content

Commit

Permalink
fix: add super(config, context) to e2e environment
Browse files Browse the repository at this point in the history
  • Loading branch information
noomorph committed Dec 1, 2020
1 parent f50601d commit f07d71d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions detox/test/e2e/environment.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ const {
} = require('detox/runners/jest-circus');

class CustomDetoxEnvironment extends DetoxCircusEnvironment {
constructor(config) {
super(config);
constructor(config, context) {
super(config, context);

this.registerListeners({
SpecReporter,
Expand Down

0 comments on commit f07d71d

Please sign in to comment.