1. karma-jasmine-matchers
A Karma plugin - Additional matchers for the Jasmine BDD JavaScript testing library.
karma-jasmine-matchers
Package: karma-jasmine-matchers
Created by: JamieMason
Last modified: Sun, 19 Jun 2022 07:59:49 GMT
Version: 5.0.0
License: MIT
Downloads: 70,359
Repository: https://github.com/JamieMason/karma-jasmine-matchers

Install

npm install karma-jasmine-matchers
yarn add karma-jasmine-matchers

karma-jasmine-matchers

A Karma plugin to inject Jasmine-Matchers for Jasmine and Jest.

NPM version NPM downloads Build Status Maintainability

Table of Contents

🌩 Installation

npm install karma-jasmine-matchers --save-dev

📝 API

See the following links for a full list of Matchers and Asymmetric Matchers provided.

🕹 Usage

Just include 'jasmine-matchers' in the frameworks and 'karma-jasmine-matchers'in the plugins section of your config

 module.exports = function(config) {
  config.set({
    frameworks: ["jasmine", "jasmine-matchers"],
    files: ["src/**/*.js", "src/**/*.spec.js"],
    // also you must add it as a plugin
    plugins: ["karma-jasmine", "karma-jasmine-matchers"]
  });
};

TypeScript and Angular CLI projects

If you are using TypeScript, you might want to npm install @types/jasmine-expect --save-dev in order to prevent your IDE from complaining about the new Matchers.

Also, if you run into TypeScript compilation errors when running your tests, add "jasmine-expect" to the "types" array in your tests' tsconfig file.

As an example, for an Angular CLI based project, this would be your tsconfig.spec.json file:

 {
  "extends": "../tsconfig.json",
  "compilerOptions": {
    "outDir": "../out-tsc/spec",
    "baseUrl": "./",
    "module": "commonjs",
    "target": "es5",
    "types": ["jasmine", "node", "jasmine-expect"]
  },
  "files": ["test.ts"],
  "include": ["**/*.spec.ts", "**/*.d.ts"]
}

🙋🏾‍♀️ Getting Help

Get help with issues by creating a Bug Report or discuss ideas by opening a Feature Request.

👀 Other Projects

If you find my Open Source projects useful, please share them ❤️

🤓 Author

I'm Jamie Mason from Leeds in England, I began Web Design and Development in 1999 and have been Contracting and offering Consultancy as Fold Left Ltd since 2012. Who I've worked with includes Sky Sports, Sky Bet, Sky Poker, The Premier League, William Hill, Shell, Betfair, and Football Clubs including Leeds United, Spurs, West Ham, Arsenal, and more.

Follow JamieMason on GitHub      Follow fold_left on Twitter

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code