README.md revision 7cb0a70811691287e08c2cb59d41542fd4e1ef4a
# 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.