Files: e1b55c0cca1102ca828c984773c303b09b965ff0 / features / support / world.js
290 bytesRaw
1 | const Browser = require('zombie') |
2 | |
3 | const config = require('app/config') |
4 | |
5 | Browser.localhost('localhost', config.proxy.port) |
6 | |
7 | function World () { |
8 | // this.browser will be available in step definitions |
9 | this.browser = new Browser() |
10 | } |
11 | |
12 | module.exports = function () { |
13 | this.World = World |
14 | } |
15 |
Built with git-ssb-web