Code Monkey home page Code Monkey logo

mocha-tags's Introduction

mocha-tags

NPM License Build Status Dependencies Dev dependencies

  • Do you have integration tests that connect to your internal network?
  • Do you need to skip them when running on Travis?
  • Or do you want to tag "slow" and "fast" tests, and run them separately?
npm install mocha-tags --save-dev

Quick example

tags('network')
.describe(/* ... */)

tags('integration', 'fast')
.it(/* ... */)

By default all tests will run as usual, but you can use the --tags option to filter them:

mocha --tags "is:integration not:slow not:network"

Tests that don't match the criteria are skipped with the xdescribe or xit commands, and appear as pending in the test output.

Filtering

Note: because of the way filtering works, tags have to be a single word, without any spaces.

is:<tag>

Run tests with the X tag

mocha --tags "is:X"

Run tests with the X or Y tags

mocha --tags "is:X is:Y"

Run tests with the X and Y tag

mocha --tags "is:X+Y"

not:<tag>

Don't run tests with the X flag

mocha --tags "not:X"

Don't run tests with the X or Y flag

mocha --tags "not:X not:Y"

Don't run tests with the X and Y flag

mocha --tags "not:X+Y"

Programmatic usage

You might want to exclude certain tags based on complex logic. This is not easy to define from the command line, so mocha-tags exposes its filter programmatically.

var tags = require('mocha-tags');

// either replace the entire filter
tags.filter = new tags.Filter('not:trading-hours');

// or simply modify the existing one
if (moment().hours() < 8 || moment().hours() > 18) {
  tags.filter.remove('not:unit');
  tags.filter.add('not:trading-hours');
}

tags('trading-hours').it(
  // some integration test than can only run during core hours
);

Troubleshooting

Skipped tests appear as pending in the test output, so you should always notice any test that was skipped by accident.

It also helps to add the following at the top of your main test file / spec helper.

var tags = require('mocha-tags');
console.log('Test filter: ', tags.filter);

Custom test hooks

mocha-tags supports the following keywords:

  • tags().describe : normal usage
  • tags().describe.only : ignores any tags and filters, and runs by itself
  • tags().xdescribe : ignored regardless of tags. Also can be used as tags().describe.skip.

...and the same pattern for it. You can also add custom test hooks by setting the following property:

tags.hooks = function(either) {
  this.mytest = either(fnMatch, fnSkip);
};

// to be used as
tags('hello', 'world').mytest(/* arguments */);

// which will call either
fnMatch(/* arguments */);
fnSkip(/* arguments */);

mocha-tags's People

Contributors

kellerbr-ibm avatar widget- avatar dependabot[bot] avatar hicksjacobp avatar pade avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.