Add Number.prototype.toFixed return value test

Adds a test to ensure that toFixed returns a string value
This commit is contained in:
K. Adam White 2017-01-19 13:37:57 -05:00 committed by Rick Waldron
parent 6391689a6b
commit 5d69e30929
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
// Copyright (C) 2017 K. Adam White. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es6id: 20.1.3.3
esid: sec-number.prototype.tofixed
description: >
Number.prototype.toFixed returns a string value
---*/
assert.sameValue(typeof (123.456).toFixed(), "string");