webdriverio/wdio-mocha-framework

View on GitHub
test/fixtures/error.handling.promise.async.spec.js

Summary

Maintainability
A
2 hrs
Test Coverage
describe('dummy test', () => {
    before(() => {
    })

    it('sample test', () => {
        return browser.command().then((result) => {
            result.should.be.equal('foo')
        })
    })

    after(() => {
    })
})