Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

World.js example requires zombie to be assigned to a variable. #44

Closed
steckel opened this issue Feb 6, 2012 · 2 comments
Closed

World.js example requires zombie to be assigned to a variable. #44

steckel opened this issue Feb 6, 2012 · 2 comments

Comments

@steckel
Copy link

steckel commented Feb 6, 2012

Don't forget to assign zombie to a variable for use in your features/support/world.js example.

The example:

require('zombie');
var World = function(callback) {
  this.browser = new zombie.Browser(); // this.browser will be available in step definitions

  this.visit = function(url, callback) {
    this.browser.visit(url, callback);
  };

  callback(this); // tell Cucumber we're finished and what to use as World (this)
};
exports.World = World;

Corrected:

but, zombie isn't assigned until you do it yourself:

var zombie = require('zombie');
var World = function(callback) {
  this.browser = new zombie.Browser(); // this.browser will be available in step definitions

  this.visit = function(url, callback) {
    this.browser.visit(url, callback);
  };

  callback(this); // tell Cucumber we're finished and what to use as World (this)
};
exports.World = World;
@jbpros
Copy link
Member

jbpros commented Feb 6, 2012

Well spotted. Thanks for reporting.

It's not automatically closed by Github. It should have: 2e6db06.

@jbpros jbpros closed this as completed Feb 6, 2012
jbpros added a commit to jbpros/cucumber-js that referenced this issue Feb 8, 2012
@lock
Copy link

lock bot commented Oct 25, 2018

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

@lock lock bot locked as resolved and limited conversation to collaborators Oct 25, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants