UNPKG

wdio-workflo-jasmine-framework

Version:

This is a customized version of wdio-jasmine-framework for use with workflo framework.

20 lines (15 loc) 290 B
describe('dummy test', () => { beforeAll(() => { }) beforeEach(() => { }) it('sample test', () => { return browser.command(1).then((result) => { expect(result).toBe(2) }) }) afterEach(() => { }) afterAll(() => { }) })