We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22366b9 commit 1e7dc06Copy full SHA for 1e7dc06
src/main/frontend/src/utils/DateUtils.test.js
@@ -1,8 +1,8 @@
1
import './DateUtils.js'
2
3
-describe('DateUtils.formatDateToDdMmYyyy()', function() {
+describe('DateUtils.formatDateToDdMmYyyy()', () => {
4
5
- it('should return a string in a format dd.mm.yyyy', function() {
+ it('should return a string in a format dd.mm.yyyy', () => {
6
var date = new Date('2018-06-12T16:59:54.451Z');
7
expect(DateUtils.formatDateToDdMmYyyy(date)).toEqual('12.06.2018');
8
});
0 commit comments