Browse Source

Added unit test for Date.getFullMonthName.

Gagan Deep 4 years ago
parent
commit
0ee3cbd988
1 changed files with 5 additions and 0 deletions
  1. 5 0
      js_tests/admin/core.test.js

+ 5 - 0
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');