All Projects → Rowno → grunt-mocha-cli

Rowno / grunt-mocha-cli

Licence: MIT license
Run Mocha server-side tests in Grunt.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to grunt-mocha-cli

Kotsu
✨ Clean, opinionated foundation for new projects — to boldly go where no man has gone before
Stars: ✭ 48 (+14.29%)
Mutual labels:  grunt
jscrambler
Monorepo of Jscrambler's Javascript Client and Integrations
Stars: ✭ 118 (+180.95%)
Mutual labels:  grunt
browser-extension
Hunter for Chrome and Firefox
Stars: ✭ 15 (-64.29%)
Mutual labels:  grunt
react-testing-mocha-chai-enzyme
A solid test setup for React components with Mocha, Chai, Sinon, Enzyme in a Webpack/Babel application.
Stars: ✭ 48 (+14.29%)
Mutual labels:  mocha
gruntworkflows
Repository for my tutorial course: Grunt.js Web Workflows on LinkedIn Learning and Lynda.com.
Stars: ✭ 28 (-33.33%)
Mutual labels:  grunt
aria-vue
Testing tools for Vue components
Stars: ✭ 21 (-50%)
Mutual labels:  mocha
minimal-hapi-react-webpack
Minimal Hapi + React + Webpack + HMR (hot module reloading) Sandbox
Stars: ✭ 55 (+30.95%)
Mutual labels:  mocha
javascript-unit-testing-with-mocha
Unit test using Mocha and Chai
Stars: ✭ 104 (+147.62%)
Mutual labels:  mocha
givens
Easy test setup without side effects.
Stars: ✭ 22 (-47.62%)
Mutual labels:  mocha
BotBlock.org
BotBlock - The List of Discord Bot Lists and Services
Stars: ✭ 29 (-30.95%)
Mutual labels:  mocha
actions-js-build
GitHub Actions for running Javascript build tools and committing file changes
Stars: ✭ 46 (+9.52%)
Mutual labels:  grunt
api-skel
Webpack + Typescript + Express + Jest + Chai + Gulp
Stars: ✭ 18 (-57.14%)
Mutual labels:  mocha
cypress-slack-reporter
A home for various Cypress Plugins
Stars: ✭ 126 (+200%)
Mutual labels:  mocha
castlecss-boilerplate
A simple and mobile-friendly HTML5 template with CastleCSS to kickstart your website
Stars: ✭ 29 (-30.95%)
Mutual labels:  grunt
instant-mocha
☕️ Build tests with Webpack and run with Mocha in one command
Stars: ✭ 39 (-7.14%)
Mutual labels:  mocha
node-url-shortener
URL Shortener in Base58 using Node.js, Express, Sequelize, Mocha and Bootstrap
Stars: ✭ 21 (-50%)
Mutual labels:  mocha
mocha-cakes-2
A BDD plugin for Mocha testing framework
Stars: ✭ 44 (+4.76%)
Mutual labels:  mocha
nodejs-integration-testing
Integration testing of a Node.js / Express.js / Sequelize app
Stars: ✭ 23 (-45.24%)
Mutual labels:  mocha
alexa-skill-test-framework
Framework for easy offline black-box testing of Alexa skills.
Stars: ✭ 64 (+52.38%)
Mutual labels:  mocha
titef
🌠 A tiny, lightning-fast, zero-dependecies JavaScript test framework 🌠
Stars: ✭ 19 (-54.76%)
Mutual labels:  mocha

Grunt Mocha CLI

Build Status Build Status Dependency Status

Run Mocha server-side tests in Grunt.

Getting Started

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. You can install this plugin with this command:

npm install grunt-mocha-cli --save-dev

Usage

Options

All of the Mocha command line options are supported, plus some extras.

The list of test files to run can be specified using either the standard Grunt format or by using the files option. If neither is specified, the Mocha default will be used (test/*.js).

Warning: If you have a large number of test files, you should use the filesRaw option and not the standard Grunt format or the files option. Otherwise you risk hitting the operating system command line length limit.

Mocha Options

  • allow-uncaught (boolean) - enable uncaught errors to propagate.
  • async-only (boolean) - force all tests to take a callback (async).
  • bail (boolean) - bail after first test failure.
  • check-leaks (boolean) - check for global variable leaks.
  • colors (boolean) - force enabling of colors.
  • delay (boolean) - wait for async suite definition.
  • exit (boolean) - force shutdown of the event loop after test run: mocha will call process.exit.
  • fgrep (string) - only run tests containing .
  • forbid-only (boolean) - causes test marked with only to fail the suite.
  • forbid-pending (boolean) - causes pending tests and test marked with skip to fail the suite.
  • full-trace (boolean) - display the full stack trace.
  • globals (array) - allow the given comma-delimited global names.
  • grep (string) - only run tests matching .
  • growl (boolean) - enable growl notification support.
  • inline-diffs (boolean) - display actual/expected differences inline within each string.
  • invert (boolean) - inverts grep and fgrep matches.
  • log-timer-events (boolean) - time events including external callbacks.
  • no-colors (boolean) - force disabling of colors.
  • no-deprecation (boolean) - silence deprecation warnings.
  • no-diff (boolean) - do not show a diff on failure.
  • no-timeouts (boolean) - disables timeouts.
  • parallel (boolean) - run tests in parallel.
  • perf-basic-prof (boolean) - enable perf linux profiler (basic support).
  • recursive (boolean) - include sub directories.
  • reporter (string) - specify the reporter to use.
  • reporter-options (object) - specify the reporter options for some specific reporter, for example '{output: /tmp/out}' for 'xunit'.
  • require (array) - require the given modules.
  • retries (integer) - set number of times to retry a failed test case.
  • slow (integer) - "slow" test threshold in milliseconds [75].
  • sort (boolean) - sort test files.
  • throw-deprecation (boolean) - throw an exception anytime a deprecated function is used.
  • timeout (integer) - set test-case timeout in milliseconds [2000].
  • trace-deprecation (boolean) - show stack traces on deprecations.
  • trace (boolean) - trace function calls.
  • ui (string) - specify user-interface (bdd|tdd|exports).
  • use_strict (boolean) - enforce strict mode.

Extras

  • env (object) - hash of additional environment variables to pass to the Mocha process.
  • files (array) - globs of test files to run.
  • filesRaw (array) - globs of test files to run. These globs are passed directly to Mocha and aren't expanded by Grunt first.
  • flags (array) - set arbitrary node/mocha flags.
  • force (boolean) - continue running Grunt tasks even if tests fail.
  • quiet (boolean) - disable printing of Mocha's output to the terminal.
  • save (string) - write the mocha output to a file.

Examples

Define test files using the standard Grunt format:

grunt.initConfig({
  mochacli: {
    options: {
      require: ['should'],
      reporter: 'nyan',
      bail: true
    },
    all: ['test/*.js']
  }
})
grunt.loadNpmTasks('grunt-mocha-cli')
grunt.registerTask('test', ['mochacli'])

Define test files and basic options once, then customise options per target:

grunt.initConfig({
  mochacli: {
    options: {
      require: ['should'],
      files: 'test/*.js'
    },
    spec: {
      options: {
        reporter: 'spec'
      }
    },
    nyan: {
      options: {
        reporter: 'nyan'
      }
    }
  }
})
grunt.loadNpmTasks('grunt-mocha-cli')
grunt.registerTask('test', ['mochacli:spec'])

Contributing

In lieu of a formal style guide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

License

Grunt Mocha CLI is released under the MIT license.

Copyright © 2013 Roland Warmerdam.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].