From 0ee3cbd988a388e090ce1ddebb328c2201fa8cfc Mon Sep 17 00:00:00 2001 From: Gagan Deep Date: Wed, 28 Oct 2020 11:05:50 +0100 Subject: [PATCH] Added unit test for Date.getFullMonthName. --- js_tests/admin/core.test.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/js_tests/admin/core.test.js b/js_tests/admin/core.test.js index 8bfa6f9bdc..a74efc6d3c 100644 --- a/js_tests/admin/core.test.js +++ b/js_tests/admin/core.test.js @@ -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');