lastFriday should be a function.
testString: assert(typeof lastFriday == 'function');
- text: lastFriday(2018, 1) should return a number.
testString: assert(typeof lastFriday(2018, 1) == 'number');
- text: lastFriday(2018, 1) should return 26.
testString: assert.equal(lastFriday(2018, 1), 26);
- text: lastFriday(2017, 2) should return 24.
testString: assert.equal(lastFriday(2017, 2), 24);
- text: lastFriday(2012, 3) should return 30.
testString: assert.equal(lastFriday(2012, 3), 30);
- text: lastFriday(1900, 4) should return 27.
testString: assert.equal(lastFriday(1900, 4), 27);
- text: lastFriday(2000, 5) should return 26.
testString: assert.equal(lastFriday(2000, 5), 26);
- text: lastFriday(2006, 6) should return 30.
testString: assert.equal(lastFriday(2006, 6), 30);
- text: lastFriday(2010, 7) should return 30.
testString: assert.equal(lastFriday(2010, 7), 30);
- text: lastFriday(2005, 8) should return 26.
testString: assert.equal(lastFriday(2005, 8), 26);
```