1.0.0 • Published 7 years ago

jasmine-audio-reporter v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

Jasmine Audio Reporter

This Jasmine 2.x helper will make a sound for each test that fails. Great for running your tests on a watch in the background, so you will hear when something breaks.

Installation

It requires Jasmine 2 and up.

npm install --save-dev jasmine-audio-reporter

Then you need to be able to include the helper in your testing directory or where you'd like to run tests.

You can do this by creating a helpers object in your spec/support/jasmine.json file, or adding to an existing helpers object.

If you don't already have a helpers object in spec/support/jasmine.json, add this:

    "helpers": [
        "../node_modules/jasmine-audio-reporter/"
    ]

If you already have a helpers object, just add "../node_modules/jasmine-audio-reporter/" to it.