tree: ddad1b4fe815fb626d83ae9affba125a2196ed0b [path history] [tgz]
  1. docs/
  2. examples/
  3. webidl2/
  4. .htaccess
  5. idlharness.js
  6. LICENSE
  7. readme.md
  8. testharness.css
  9. testharness.js
  10. testharnessreport.js
src/third_party/web_platform_tests/resources/readme.md

Introdution

testharness.js provides a framework for writing low-level tests of browser functionality in javascript. It provides a convenient API for making assertions and is intended to work for both simple synchronous tests and for tests of asynchronous behaviour.

Getting Started

To use testharness.js you must include two scripts, in the order given:

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

Full documentation

Full user documentation for the API is in the docs/api.md file.

You can also read a tutorial on Using testharness.js.