wiki:Writing testharness Tests

Version 1 (modified by jacobg@adobe.com, 12 years ago) (diff)

--

Writing JavaScript-based DOM only tests using testharness

When writing test cases that only test the DOM it is preferable to use an .html file since it only requires one test file instead of two.

Two JavaScript frameworks exist in the WebKit repository:

The two frameworks contain similar (but not necessarily identical) sets of functionalities for making common test assertions, using unique APIs.

When possible, testharness.js / testharnessreport.js are preferable as this framework is also available in the W3C Test repository, making tests written using this API fully portable to W3C.

Documentation on how to use testharness.js is provided in the comment section at the beginning of the file itself. testharnessreport.js customizes the output of testharness.js to make it compatible with the WebKit test infrastructure (specifically, the HTML formatting is removed and test results are output as plain text).