diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2012-07-19 22:02:37 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-07-19 22:02:37 -0400 |
commit | 30168722204633e49ca9d47ecb6b43d80a4653a4 (patch) | |
tree | 9e18f010ae7979437a5085601e3c6f20cb44cebd /test/index.html | |
parent | f70a696598f14917e49dc108271788e2ec2f6587 (diff) | |
download | jquery-30168722204633e49ca9d47ecb6b43d80a4653a4.tar.gz jquery-30168722204633e49ca9d47ecb6b43d80a4653a4.zip |
Let subproject tests use their own test fixture. Closes gh-867.
Diffstat (limited to 'test/index.html')
-rw-r--r-- | test/index.html | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/test/index.html b/test/index.html index aeb9362d6..7fcc54fca 100644 --- a/test/index.html +++ b/test/index.html @@ -40,8 +40,6 @@ <script src="unit/queue.js"></script> <script src="unit/attributes.js"></script> <script src="unit/event.js"></script> - <script src="../src/sizzle/test/unit/selector.js"></script> - <script src="../src/sizzle/test/unit/utilities.js"></script> <script src="unit/selector.js"></script> <script src="unit/traversing.js"></script> <script src="unit/manipulation.js"></script> @@ -54,6 +52,11 @@ <script src="unit/deprecated.js"></script> <script src="unit/exports.js"></script> + <!-- Subproject tests must be last because they replace our test fixture --> + <script> + testSubproject( "Sizzle", "../src/sizzle/test/", /^unit\/.*\.js$/ ); + </script> + <script> // html5shiv, enabling HTML5 elements to be used with jQuery ( "abbr article aside audio bdi canvas data details figcaption figure footer header hgroup " + |