summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Date/prototype/toString/invalid-date.js
blob: 9d0373a571606442decab50d716541b57506be4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (C) 2017 the V8 project authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-todatestring
description: Invalid Dates are rendered as "Invalid Date"
info: |
  ToDateString ( tv )

  ...
  2. If tv is NaN, return "Invalid Date".
  ...
---*/

assert.sameValue(new Date(NaN).toString(), "Invalid Date");

reportCompare(0, 0);