We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 471371e commit bfd763aCopy full SHA for bfd763a
README.md
@@ -1734,7 +1734,7 @@ describe('MakeMomentJSGreatAgain', () => {
1734
1735
date = new MakeMomentJSGreatAgain('1/1/2015');
1736
date.addDays(30);
1737
- date.shouldEqual('1/31/2015');
+ assert.equal('1/31/2015', date);
1738
1739
date = new MakeMomentJSGreatAgain('2/1/2016');
1740
date.addDays(28);
@@ -1755,7 +1755,7 @@ describe('MakeMomentJSGreatAgain', () => {
1755
it('handles 30-day months', () => {
1756
const date = new MakeMomentJSGreatAgain('1/1/2015');
1757
1758
1759
});
1760
1761
it('handles leap year', () => {
0 commit comments