Возвращает массив с текущей датой в форматах:
- 2007-11-23 и
- Воскресенье, 23 ноября 2007 г.
Пример вывода: ['2007-11-23', 'Sunday, November 23, 2007']
getDateFormats
is a function.
testString: assert(typeof getDateFormats === 'function');
- text: Should return an object.
testString: assert(typeof getDateFormats() === 'object');
- text: Should returned an array with 2 elements.
testString: assert(getDateFormats().length === 2);
- text: Should return the correct date in the right format
testString: assert.deepEqual(getDateFormats(), dates, equalsMessage);
```
getDataFormats()
should return ["${dates[0]}", "${dates[1]}"]
.`;
```