Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@outlinerisk/jasmine-fail-hardcore

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@outlinerisk/jasmine-fail-hardcore

Allow Jasmine tests to "fail-fast", exiting on the first failure instead of running all tests no matter what.

  • 0.13.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

jasmine-fail-fast build status

Allow Jasmine tests to "fail-fast", exiting on the first failure instead of running all tests no matter what. This can save a great deal of time running slow, expensive tests, such as Protractor e2e tests.

This module is a workaround to address the need for a fail-fast option in Jasmine, a feature that has been requested for years:

Inspired by https://github.com/goodeggs/jasmine-bail-fast, which doesn't seem to be working with Jasmine 2.x.

Usage

This module is implemented as a Jasmine reporter.

Jasmine as browser global

var failFast = require('jasmine-fail-fast');
jasmine.getEnv().addReporter(failFast.init());

Jasmine Node API

var Jasmine = require('jasmine');
var jasmine = new Jasmine();
var failFast = require('jasmine-fail-fast');
jasmine.addReporter(failFast.init());

Examples

karma-jasmine

In the Karma configuration file:

module.exports = function(config) {
  var failFast = require('jasmine-fail-fast');
  window.jasmine.getEnv().addReporter(failFast.init());
}

Protractor

In the Protractor configuration file:

onPrepare: function() {
  var failFast = require('jasmine-fail-fast');
  jasmine.getEnv().addReporter(failFast.init());
}

As a Jasmine helper

Create a new .js file within the helpers folder:

//<path-to-helpers>/fail-fast.js
var failFast = require('jasmine-fail-fast');
jasmine.getEnv().addReporter(failFast.init());

grunt-contrib-jasmine

Set up as a helper, optionally overriding the default helpers path.

Keywords

FAQs

Package last updated on 23 Oct 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc