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...
- tags: angular, testing, jasmine, unit-testing
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(...
- tags: jasmine
https://jasmine.github.io/pages/docs_home.html
List of hyperlinks to the different version docs.
- tags: jasmine, docs, javascript