nutra-jasmine-preset

0.0.4 • Public • Published

nutra-jasmine-preset

The "nutra-jasmine-preset" module makes available the jasmine behavior-driven testing framework and the commonjs module loader to the N.U.T.R.A. unit test runner.

Install Preset:

npm install nutra nutra-jasmine-preset

Add Preset Configuration:

Create a "nutra.config.js" config file in the root of your project and populate it with the following:

// nutra.config.js
module.exports = function( config ) {
  config.set({
    frameworks: ['nutra-jasmine'],
    files: ['specs/**/*.js', 'src/**/*.js'] // Modify to include your own app & spec files
  })
  // For more configuration options, please take a look at:
  // https://github.com/m-a-r-c-e-l-i-n-o/nutra#configuration-anatomy
}

Package Sidebar

Install

npm i nutra-jasmine-preset

Weekly Downloads

1

Version

0.0.4

License

MIT

Last publish

Collaborators

  • m-a-r-c-e-l-i-n-o