diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-09-16 12:19:56 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-09-16 12:19:56 +0000 |
commit | f6ecc6a95c4046f53d1f0d75af213305c2bd7ea7 (patch) | |
tree | 0b9a1bed6a57446df6ff3941bbf85211fc26542d /build.xml | |
parent | c792f325142ad928a1bf3263b5958cc01ea1a936 (diff) | |
download | jquery-f6ecc6a95c4046f53d1f0d75af213305c2bd7ea7.tar.gz jquery-f6ecc6a95c4046f53d1f0d75af213305c2bd7ea7.zip |
Refactored test suite: All tests are now compiled into one file, runs much faster and does not require ugly synchronization; Changed build.xml (tested) and Makefile (not tested!); Replaced calls to cmpOK() with ok(), removed cmpOK(); Tests can now call reset() to be able to always test against the unmodified test setup
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -62,7 +62,8 @@ <echo message="Building Test Suite" /> <delete dir="${TEST_DIR}" /> <mkdir dir="${TEST_DIR}/tests" /> - <mkdir dir="${TEST_DIR}/js" /> + <mkdir dir="${TEST_DIR}/js" />
+ <copy todir="${TEST_DIR}" file="${BUILD_DIR}/test/index.html" /> <copy todir="${TEST_DIR}/js"> <fileset dir="${BUILD_DIR}/test/js"> <include name="**/*.js"/> |