UNPKG

@christian-bromann/webdriverio

Version:

A nodejs bindings implementation for selenium 2.0/webdriver

16 lines (12 loc) 289 B
describe('call', () => { let isCalled = false before(global.setupInstance) before(function () { return this.client.call(() => { isCalled = true }) }) it('should have executed a function', () => { isCalled.should.be.true }) })