webdriverio/wdio-jasmine-framework

View on GitHub
test/fixtures/sample3.spec.js

Summary

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

    beforeEach(() => {
    })

    it('sample test', () => {
        expect(browser.command(1)).toBe(2)
    })

    afterEach(() => {
    })

    afterAll(() => {
    })
})