Added unit test for Date.getFullMonthName.

This commit is contained in:
Gagan Deep 2020-10-28 11:05:50 +01:00 committed by Mariusz Felisiak
parent 8593e162c9
commit 0ee3cbd988
1 changed files with 5 additions and 0 deletions

View File

@ -40,6 +40,11 @@ QUnit.test('Date.getTwoDigitSecond', function(assert) {
assert.equal(new Date(2014, 6, 1, 0, 0, 20).getTwoDigitSecond(), '20', '12:00:20 am is 20');
});
QUnit.test('Date.getFullMonthName', function(assert) {
assert.equal(new Date(2020, 0, 26).getFullMonthName(), 'January', 'jan 26');
assert.equal(new Date(2020, 9, 26).getFullMonthName(), 'October', 'oct 26');
});
QUnit.test('Date.strftime', function(assert) {
const date = new Date(2014, 6, 1, 11, 0, 5);
assert.equal(date.strftime('%Y-%m-%d %H:%M:%S'), '2014-07-01 11:00:05');