We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5291d4b commit a1f371cCopy full SHA for a1f371c
tests/suites/inline.js
@@ -13,8 +13,8 @@ module('Inline', {
13
14
15
test('Picker gets date/viewDate from data-date attr', function(){
16
- datesEqual(this.dp.date, new Date(2012, 1, 12));
17
- datesEqual(this.dp.viewDate, new Date(2012, 1, 12));
+ datesEqual(this.dp.date, UTCDate(2012, 1, 12));
+ datesEqual(this.dp.viewDate, UTCDate(2012, 1, 12));
18
});
19
20
@@ -24,5 +24,5 @@ test('Visible after init', function(){
24
25
test('update', function(){
26
this.dp.update('13-03-2012')
27
- datesEqual(this.dp.date, new Date(2012, 2, 13));
+ datesEqual(this.dp.date, UTCDate(2012, 2, 13));
28
0 commit comments