scrimba
Unit Testing
Additional Matchers Challenge
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Additional Matchers Challenge
AboutCommentsNotes
Additional Matchers Challenge
Expand for more info
main.js
run
preview
console
/* Unit Testing: Additional Matchers Challenge
*
* 1. Look through the docs and write a test for a matcher we haven't discussed yet
* - https://jasmine.github.io/api/edge/matchers
*/

// Test Suite
describe(`${User.name} Class`, () => {
let model;

beforeEach(() => {
model = new User();
});

describe('additional matchers testing area', () => {

});
});
Console
/index.html
-3:30