Enlist major matchers available in Jasmine?

Priyam Kumari
Priyam Kumari

Posted On: Feb 22, 2018

 

toBeArray(), toBeArrayOfBooleans(), toBeFalse(), toBeCalculable(), toBeOddNumber(), toBeEmptyObject(), any.after(date) are few built in matchers in Jasmine. For complete list of Jasmine Matchers please visit Github Jasmine Matchers List

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Angularjs Unit Testing Interview Questions

    What is angular unit testing?

    Unit testing is a type of software testing where we test individual components of an application. In AngularJS Unit testing is performed using Jasmine and Karma. Jasmine is the testing framework used ...

    Angularjs Unit Testing Interview Questions

    What is Karma and Jasmine?

    Karma: Karma is a tool of running tests on browsers it lets us spawn browsers and run jasmine tests inside of them. Jasmine: It is a testing framework for Javascript programming language that support...

    Angularjs Unit Testing Interview Questions

    How to install Karma using NPM?

    After installing Node.js, we can install the Karma test runner by running npm install karma --save-dev command....