Skip to content

Commit 1b25d82

Browse files
committed
Docs correction
1 parent 1baff40 commit 1b25d82

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Lightweight runner for ECMAScript Temporal's Test262 tests
33

44
This package provides a fast way for polyfills of ECMAScript
5-
[`Temporal`](https://github.com/tc39/proposal-temporal) to run Temporal's 5,000+
5+
[`Temporal`](https://github.com/tc39/proposal-temporal) to run Temporal's 6,300+
66
Test262 tests. Test262 (https://github.com/tc39/test262) is the official
77
conformance test suite for ECMAScript, and this package quickly runs a subset of
88
those tests that are specific to Temporal. All Temporal polyfills should pass
@@ -11,7 +11,7 @@ Test262.
1111
This runner is much faster than
1212
[`test262-harness`](https://github.com/bterlson/test262-harness) (the default
1313
Test262 harness) because:
14-
* It runs only 5000+ Temporal-specific tests, instead of the full suite.
14+
* It runs only 6,300+ Temporal-specific tests, instead of the full suite.
1515
* It pre-parses the Temporal polyfill into a
1616
[`vm.Script`](https://nodejs.org/api/vm.html#class-vmscript), instead of
1717
reading and parsing the whole file once for each test like the prelude option

index.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ import yaml from 'js-yaml';
1313
*
1414
* Provides a fast way for polyfills of ECMAScript
1515
* [`Temporal`](https://github.com/tc39/proposal-temporal) to run Temporal's
16-
* 5,000+ Test262 tests. Test262 (https://github.com/tc39/test262) is the
16+
* 6,300+ Test262 tests. Test262 (https://github.com/tc39/test262) is the
1717
* official conformance test suite for ECMAScript, and this package quickly runs
1818
* a subset of those tests that are specific to Temporal. All Temporal polyfills
1919
* should pass Test262.
2020
*
2121
* This runner is much faster than
2222
* [`test262-harness`](https://github.com/bterlson/test262-harness) (the default
2323
* Test262 harness) because:
24-
* - It runs only 5000+ Temporal-specific tests, instead of the full suite.
24+
* - It runs only 6,300+ Temporal-specific tests, instead of the full suite.
2525
* - It pre-parses the Temporal polyfill into a
2626
* [`vm.Script`](https://nodejs.org/api/vm.html#class-vmscript), instead of
2727
* reading and parsing the whole file once for each test like the prelude

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "temporal-test262-runner",
3-
"version": "0.3.0",
3+
"version": "0.4.0",
44
"description": "Lightweight runner for ECMAScript Temporal's Test262 tests",
55
"main": "index.mjs",
66
"scripts": {

0 commit comments

Comments
 (0)