forked fromw3c/testharness.js
- Notifications
You must be signed in to change notification settings - Fork7
jgraham/testharness.js
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
testharness.js provides a framework for writing low-level tests ofbrowser functionality in javascript. It provides a convenient API formaking asseertions and is intended to work for both simple synchronoustests and for tests of asynchronous behaviour.
To use testharness.js you must include two scripts, in the order given:
<scriptsrc="/resources/testharness.js"></script><scriptsrc="/resources/testharnessreport.js"></script>
Full documentation of the API is kept in the source of testharness.js.
You can also read a tutorial onUsing testharness.js.