mirror of
https://github.com/tc39/test262.git
synced 2025-07-29 00:44:32 +02:00
Merge pull request #924 from littledan/date-throw
Test that Date.prototype.toString throws for non-Date receiver
This commit is contained in:
commit
89be4ebff0
15
test/built-ins/Date/prototype/toString/invalid-date.js
vendored
Normal file
15
test/built-ins/Date/prototype/toString/invalid-date.js
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
// 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");
|
20
test/built-ins/Date/prototype/toString/non-date-receiver.js
vendored
Normal file
20
test/built-ins/Date/prototype/toString/non-date-receiver.js
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
// 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-date.prototype.tostring
|
||||
description: Date.prototype.toString throws a TypeError on non-Date receivers
|
||||
info: |
|
||||
Date.prototype.toString ( )
|
||||
|
||||
1. Let tv be ? thisTimeValue(this value).
|
||||
---*/
|
||||
|
||||
assert.throws(TypeError, () => Date.prototype.toString());
|
||||
assert.throws(TypeError, () => Date.prototype.toString.call(undefined));
|
||||
assert.throws(TypeError, () => Date.prototype.toString.call(0));
|
||||
assert.throws(TypeError, () => Date.prototype.toString.call({}));
|
||||
assert.throws(TypeError, () =>
|
||||
Date.prototype.toString.call("Tue Mar 21 2017 12:16:43 GMT-0400 (EDT)"));
|
||||
assert.throws(TypeError, () =>
|
||||
Date.prototype.toString.call(1490113011493));
|
Loading…
x
Reference in New Issue
Block a user