Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.49 KB

jasmine.md

File metadata and controls

31 lines (26 loc) · 1.49 KB

Bookmarks tagged [jasmine]

https://alligator.io/angular/introduction-unit-testing/

It’s easy to get started with unit testing for Angular 2+ apps. If your projects was setup using the Angular CLI, everything will be ready for you to start writing tests using Jasmine as the testing f...


http://stackoverflow.com/questions/15717844/jasmine-js-comparing-arrays

describe('toEqual', function() {
    it('passes if arrays are equal', function() {
        var arr = [1, 2, 3];
        expect(arr).toEqual([1, 2, 3]);
    });
});

toBe() versus `toEqual(...


https://jasmine.github.io/pages/docs_home.html

List of hyperlinks to the different version docs.