Skip to content

Files

Latest commit

423135b · Nov 7, 2024

History

History

js-api

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 25, 2022
Jul 4, 2024
Sep 16, 2021
Feb 14, 2024
Nov 18, 2021
May 8, 2020
Nov 7, 2024
Oct 9, 2023
Nov 7, 2024
Jul 16, 2024
Oct 16, 2018
Oct 17, 2018
Sep 16, 2021
Jun 9, 2020
May 8, 2020
Oct 9, 2023
Apr 25, 2022
May 12, 2023
May 8, 2020
Nov 7, 2024

This directory contains tests specific to the JavaScript API to WebAssembly.

These tests exist in the web-platform-tests project, and are included here primarily to simplify sharing them between JavaScript engine implementers.

These tests can be run in a pure JavaScript environment, that is, a JS shell (like V8 or spidermonkey's shells), as well as in the browser.

The tests use the testharness.js library and the multi-global tests setup for smooth integrations with the web-platform-tests project and the existing test infrastructure in implementations.

Metadata

All tests must have the .any.js extension.

In order to be run in the JavaScript shell, a metadata comment to add the jsshell scope to the default set of scopes (window and dedicatedworker) is required at the start of the file:

// META: global=jsshell

Additional JavaScript files can be imported with

// META: script=helper-file.js

Harness

A single test file contains multiple subtests, which are created with one of the following functions:

  • For synchronous tests: test(function, name) runs the function immediately. The test fails if any assertion fails or an exception is thrown while calling the function.
  • For asynchronous tests: promise_test(function, name) where function returns a Promise. The test fails if the returned Promise rejects.

All assertions must be in one of those subtests.

A number of assertion functions are provided, e.g.:

  • assert_equals(x, y);
  • assert_not_equals(x, y);
  • assert_true(x);
  • assert_false(x);
  • assert_unreached();
  • assert_throws(error, function): checks if function throws an appropriate exception (a typical value for error would be new TypeError());
  • assert_class_string(object, class_name): checks if the result of calling Object.prototype.toString on object uses class_name;
  • promise_rejects: assert_throws, but for Promises.

All the above functions also take an optional trailing description argument.

Non-trivial code that runs before the subtests should be put in the function argument to setup(function), to ensure any exceptions are handled gracefully.

Finally, the harness also exposes a format_value function that provides a helpful stringification of its argument.

See the testharness.js documentation for more information.