summaryrefslogtreecommitdiff
path: root/js_tests/admin/core.test.js
AgeCommit message (Collapse)Author
2023-06-09Fixed #23049 -- Added %a and %A support to Date.strftime.sarahboyce
This enables the admin to display the day as locale's abbreviated/full name if %a/%A is used in the date format.
2020-10-28Fixed #32062 -- Added %b support to Date.strftime.Gagan Deep
This enables the admin to display the month as locale's abbreviated name if %b is used in the date format.
2020-10-28Added unit test for Date.getFullMonthName.Gagan Deep
2020-04-29Refs #31493 -- Changed IIFE to ES6 blocks.Jon Dufresne
2020-04-29Fixed #31493 -- Replaced var with const and let keywords in JavaScript.Jon Dufresne
The eslint configuration and the admin script compress.py have been updated for ES6. The unused fallback of globals.django in jquery.init.js was removed. It is always included before jsi18n-mocks.test.js and it always sets the global value.
2020-03-16Bumped minimum ESLint version to 6.8.0.Jon Dufresne
2019-12-30Fixed #30819 -- Fixed year determination in admin calendar widget for ↵Farhaan Bukhsh
two-digit years. Two-digit years in the range of [00, 68] are in the current century, while [69,99] are in the previous century, according to the Open Group Specification.
2019-03-27Removed unused Date.prototype.getHourMinute().Nick Pope
Unused since d2180a6bf3a72bad67bf4897b0ce2d94a6214fc4.
2019-03-27Removed unused Date.prototype.getHourMinuteSecond().Nick Pope
Unused since fa0653cd1d791a8bce835e8992cbeab6fd70d0e7.
2016-12-19Updated to QUnit 2.0.1.Tim Graham
2016-04-06Fixed #25856 -- Added %B support to Date.strftime.akoskaaa
This enables the admin to display the correct localized month name if %B is used in the date format.
2016-01-07Fixed #24980 -- Fixed day determination in admin calendar widget.Alexander Gaevsky
2015-09-02Added linting for JavaScript tests.Nik Nyby
2015-06-30DEP 0003 -- Added JavaScript unit tests.Trey Hunner
Setup QUnit, added tests, and measured test coverage. Thanks to Nick Sanford for the initial tests.