Automatic update from web-platform-testsUpdate references to w3c/web-platform-tests (#11180) Part of https://bit.ly/wpt-transition. Command used: ``` git grep -l w3c/web-platform-tests | \ xargs sed -i 's#w3c/web-platform-tests#web-platform-tests/wpt#g' ``` -- wpt-commits: a9498d169682da2df1b10b45e28df114483ccb12 wpt-pr: 11180
Streams Tests
The work on the streams tests is closely tracked by the specification authors, who maintain a reference implementation intended to match the spec line-by-line while passing all of these tests. See the whatwg/streams repository for details. Some tests may be in that repository while the spec sections they test are still undergoing heavy churn.
Generating wrapper files
Because the streams feature is supposed to work in all global contexts, each test is written as a .js file, and then four .html files are generated around it. So for example, for count-queueing-strategy.js, we have the wrapper files:
count-queueing-strategy.https.htmlcount-queueing-strategy.dedicatedworker.htmlcount-queueing-strategy-sharedworker.htmlcount-queueing-strategy-serviceworker.html
These are generated automatically by the Node.js script in generate-test-wrappers.js. See it for details, and please remember to use it whenever adding new tests.