Viktor
29c2384449
Update return-values.js (Number#toExponential bug in Firefox) ( #751 )
...
Update test cases for Number#toExponential
Includes test cases addressing a known bug on Firefox 48.
Ref https://bugzilla.mozilla.org/show_bug.cgi?id=944846
2016-08-29 17:33:55 -04:00
Leo Balter
3275f17cd4
Add tests for Number#toExponential ( #664 )
...
* Add tests for Number#toExponential
2016-07-21 10:57:05 -07:00
Mathias Bynens
3a5a09eba2
Ensure U+180E is no longer considered whitespace
...
Ref. https://hashseed.blogspot.com/2014/08/in-ecma-262-5.html
Ref. https://github.com/tc39/ecma262/pull/300#issuecomment-181376767
Ref. 9b10d2a597
Fix and add @anba’s U+180E tests
2016-07-06 10:11:32 -04:00
Leo Balter
e49d2661a8
Improve assertions comparing values to NaN ( #690 )
...
The global isNaN is not precise at all, and Number.isNaN is an ES6 feature that makes it preferrable to use assert's sameValue for NaN values, as it handles it internally using the comparison.
2016-07-01 11:22:55 -07:00
Leonardo Balter
1eaae52eb8
Add prop-desc tests for Number.prototype properties
2016-06-23 14:42:40 -04:00
Leonardo Balter
4dd7e5aa4b
Extend Number tests to assert abrupt completions
2016-06-23 14:42:40 -04:00
Leonardo Balter
9223f56344
Update and add basic prop-desc tests for Number
...
and Number.prototype
2016-06-23 14:42:40 -04:00
Leonardo Balter
8066b9ecaf
Add tests for Number.{parseFloat,parseInt}
2016-06-23 14:42:39 -04:00
Leonardo Balter
47f806ecef
Update tests for Number.NaN
2016-06-23 14:42:39 -04:00
Leonardo Balter
4492b8032b
Add tests for Number.isSafeInteger
2016-06-23 14:42:39 -04:00
Leonardo Balter
3685e6b7b3
Update and add tests for Number.isNaN
2016-06-23 14:42:39 -04:00
Leonardo Balter
c246bc7d09
Add tests for Number.isInteger
2016-06-23 14:42:39 -04:00
Leonardo Balter
46d8c3d6b8
Add tests for Number.isFinite
2016-06-23 14:42:39 -04:00
Leonardo Balter
454b8f10b8
Update and add tests for Number.POSITIVE_INFINITY
2016-06-23 14:42:39 -04:00
Leonardo Balter
7e55e54538
Update and add tests for Number.NEGATIVE_INFINITY
2016-06-23 14:42:39 -04:00
Leonardo Balter
36909a0595
Add tests for Number.EPSILON
2016-06-23 14:42:38 -04:00
Leonardo Balter
813bb5166c
Remove precision-equivalency tests
...
Due to specs approximation values, some tests are invalid as the harness
helpers rely on another approximated values as Math.LN2.
2016-06-20 17:44:11 -04:00
Leonardo Balter
60e61a15e0
Add tests for Number#toPrecision
2016-06-15 17:59:12 -04:00
Mike Pennisi
f7aa31b41f
Remove over-specified tests
...
Except for a small set of expected input/output pairs, both ES5 and
ES2015 define the expected return value of these methods in terms of an
"implementation-dependent approximation." This makes it inappropriate to
enforce expectations for specific values, even if expressed imprecisely.
2016-04-18 14:36:49 -04:00
Mike Pennisi
cb19235ba4
Add tests for Number.{MAX,MIN}_SAFE_INTEGER
2016-03-09 12:21:29 -05:00
André Bargull
ca61d9b876
Add missing tests for "length" and "name" properties of built-in functions
...
Note: Already uses the updated DataView function lengths from tc39/ecma262#266 (ES2016 Draft 2015-12-20)
2016-01-15 18:12:05 +01:00
André Bargull
1da4c78051
Revert primitive wrapper prototypes and String#split to ES5
...
- Revert Number, Boolean and String prototypes to ES5 semantics
- Revert String.prototype.split's to ES5 behavior
2015-11-06 18:50:44 +01:00
Gorkem Yakin
26e6fd7c17
Convert binary integers to octal in octal integer tests
2015-09-30 08:54:45 -07:00
André Bargull
1b14708467
Replace runTestCase with assert helpers [test/built-ins]
2015-08-13 17:50:58 +02:00
André Bargull
6cd7b9e275
Replace runTestCase with assert helpers [test/built-ins/Number]
2015-08-06 18:26:38 +02:00
Brian Terlson
2284a46ebf
Merge pull request #385 from anba/license
...
Change license headers to standard format
2015-07-17 11:03:07 -07:00
André Bargull
023c7aa69e
- Remove inline license
...
- Remove duplicate word
- Add missing license
2015-07-17 19:55:00 +02:00
André Bargull
a85f5039e0
Remove links to hg.ecmascript.org
2015-07-17 17:43:09 +02:00
Mike Pennisi
3fb19f53dc
Add tests for OctalIntegerLiterals
2015-06-12 16:06:52 -04:00
Mike Pennisi
c273e30235
Add tests for BinaryIntegerLiterals
2015-06-12 16:06:52 -04:00
Mike Pennisi
92890e6723
Remove $FAIL
function
...
This function is equivalent to `$ERROR` (which is automatically included
in test environments). Remove the harness file that defines the
function, remove references to the file from test `includes` lists, and
update scripts to instead invoke the `$ERROR` function.
2015-06-09 19:44:25 -04:00
André Bargull
56036e4064
Enable strict mode for more built-in tests
...
- Remove no longer needed noStrict flags.
- Change tests to use propertyHelper.js for strict mode compatibility.
- Add tests for return value of `delete` operator, e.g. `delete Array.prototype === false`.
- Add non-writable tests for global NaN property.
- Split some tests to run in strict mode.
- Change tests with global `var length` declaration to use a different variable name for browser environments.
- Merge duplicated tests symbol-data-property-configurable-non-strict and symbol-data-property-configurable-strict.
- Merge duplicated tests symbol-data-property-writable-non-strict and symbol-data-property-writable-strict.
- (And a small change in propertyHelper to reduce code duplication in function call.)
2015-05-18 18:01:00 +02:00
André Bargull
81a7177ff1
Fix strict mode errors in built-ins/Number
...
Add missing "var" declarations and noStrict flags.
Part of issue #35 .
2015-04-29 17:41:08 +02:00
Rick Waldron
59e2a7ac57
Import tests from Google V8 (Symbol)
...
These tests are derived from the following files within the Google V8 project:
test/mjsunit/harmony/private.js
2015-04-07 16:53:18 -04:00
Rick Waldron
cda3ec74a1
ES6-specific tests: es5id=>es6id, new es6id entries. Closes gh-144
2015-02-12 16:36:13 -05:00
Brian Terlson
2a74f0ec1b
Reorganize ./test
2014-12-07 15:33:09 -08:00