the demo files given in the readme as below...
these can just go anywhere? or do they need to go within the package? assume they run server side only?
is there any other wrapper required or just put the below, even into an onStartup block and it should work?
describe('Browser testing', function(done) {
var _browser;
before(function(done) {
wdio.getGhostDriver(function(browser) {
_browser = browser;
done();
});
})
the demo files given in the readme as below...
these can just go anywhere? or do they need to go within the package? assume they run server side only?
is there any other wrapper required or just put the below, even into an onStartup block and it should work?