Skip to content
This repository has been archived by the owner on Sep 4, 2023. It is now read-only.

UziTech/jasmine-pass

Repository files navigation

Actions Status

Jasmine Pass

This will add a function pass() which is the opposite of fail()

Install

npm install --save-dev jasmine-pass

Using

// In your spec helper
require("jasmine-pass")

// In your specs

describe("jasmine.pass", function () {
  it("will pass", function () {
    pass();
  });
});