2.1.12 • Published 6 years ago

the-e2e v2.1.12

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

the-e2e

Build Status npm Version JS Standard

E2E testing for the-frameworks

Installation

$ npm install the-e2e --save

Usage

'use strict'

const {TheE2E} = require('the-e2e')
const assert = require('assert')

async function tryExample () {
  const e2e = new TheE2E({
    'google:title': async (browser) => {
      await browser.url('http://www.google.com')
      const title = await browser.getTitle()
      assert.ok(title)
      assert.ok(title.toLowerCase().match('google'))
    },
  })

  await e2e.run('google:title')
}

tryExample().catch((err) => console.error(err))

API Guide

License

This software is released under the MIT License.

Links

2.1.12

6 years ago

2.1.11

6 years ago

2.1.10

6 years ago

2.1.9

6 years ago

2.1.8

6 years ago

2.1.7

6 years ago

2.1.6

6 years ago

2.1.5

6 years ago

2.1.4

6 years ago

2.1.3

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

1.3.2

6 years ago

1.3.0

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago