Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

buddy-browser

buddyjs17MITdeprecated0.1.1

This library is not actively maintained anymore.

Browser reporter for buddy tests.

buddy, testing, reporter, buddy-reporter

readme

buddy-browser

Browser reporter for Buddy.

Example

You pass the buddy-browser library as your reporter:

var spec   = require('test-buddy')()

spec('Your thing', function(it) {
  it('Should pass', function() {

  })

  it('Should fail', function() {
    throw new Error('boo')
  })
})

spec.run(require('buddy-browser')())

Then point the server to your file:

$ buddy-browser serve your-file.js

And get back this deliciously rich output!

The output of Buddy-browser

Installing

Just grab it from NPM:

$ npm install -g buddy-browser

Licence

MIT/X11. IOW you just do whatever the fuck you want to ;3