aboutsummaryrefslogtreecommitdiff
path: root/node_modules/to-iso-string/test/index.js
blob: 11456b37f72104abfa5e06000b378bf6d7f675ea (plain)
1
2
3
4
5
6
7
8
9
10

var assert = require('assert');
var iso = require('..');

describe('to-iso-string', function () {
  it('should work', function () {
    var date = new Date("05 October 2011 14:48 UTC");
    assert('2011-10-05T14:48:00.000Z' == iso(date));
  });
});