1.4.0 • Published 6 years ago

cappadonna v1.4.0

Weekly downloads
3
License
Apache-2.0
Repository
github
Last release
6 years ago

Cappadonna

Headless browser testing for tap with coverage reporting.

Cappadonna merges several tools together for integrated testing.

Example:

const path = require('path')
const cappadonna = require('cappadonna')
const test = cappadonna(path.join(__dirname, 'bundle-entry-point.js'))

test('basic test', async (page, t) => {
  /* we get a new webpage object with our bundle loaded for every test */
  
  t.plan(1)
  let str = '<test-element>pass</test-element>'
  
  /* append string to document.body and wait for the selector to succeed */
  await page.appendAndWait(str, 'test-element')
  
  /* execute the given function in the browser */
  await page.evaluate(() => {
    t.same('pass', document.querySelector('test-element').textContent)
  })
})
$ tap tests/test-*.js --coverage

When coverage is enabled all code, including what gets bundled and sent to the browser, will be instrumented and included in coverage.

The test function and t variable are part of tap and document here.

The page object is part of puppeteer and documented here.

page.appendAndWait(htmlString, selector)

Appends the htmlString to the page's body and waits for the selector to return true.

1.4.0

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.1

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago