Name | Date | Size | |
---|---|---|---|
.. | 2012-04-05 22:56:34 | 7 | |
assets | 2011-05-07 22:56:49 | 4 | |
coverage.xml | 2012-04-03 15:56:57 | 8 KiB | |
manual | 2012-03-08 19:26:56 | 8 | |
prep.html | 2012-03-30 15:43:53 | 901 | |
README.md | 2011-08-31 07:18:28 | 814 | |
smoke.xml | 2012-04-03 16:06:37 | 388 | |
unit.xml | 2012-04-05 22:56:34 | 8.3 KiB |
README.md
# CI Testing
These XML files define the tests that should be used by CI.
## smoke.xml
Smoke tests. They test basic functionality only, providing some assurance that the system under test will not catastrophically fail.
## unit.xml
Unit tests. Each test quickly validates a single unit of code, independently from other tests, and free from external dependencies.
## coverage.xml
The subset of unit tests that are coverage-ready. This means they:
2. Respect the ?filter=raw query string parameter by setting the filter config property in the test like this:
var Y = YUI({
filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min'
});
3. Use modules that can be instrumented by YUI Test Coverage.