Home

Chimpy supports the latest version of Jasmine. Currently this is version 2.4.x.

You can enable Jasmine support by starting Chimpy with with --jasmine flag or setting jasmine: true in your Chimpy config file.

Additionally the Chimpy config file supports the following Jasmine options. The values in this file are the defaults. You can read more about those options in the Jasmine documentation.

Additionally by default:

If you miss any information or something is unclear please open an issue.

Custom spec filter

Add a helper file with something like for example:

const smokeTestRegExp = /@smoke/;
jasmine.addSpecFilter(function (spec) {
  return smokeTestRegExp.test(spec.getFullName());
});