Run two test files on one page?

Run two test files on one page?

Is it possible to include two javascript files of tests in a page?  I want to have one file for tests that common to all pages, and one that is specific to the page.  But if try
  1.     <div id="qunit"></div>
  2.     <script src="scripts/qunit_home/qunit/qunit.js"></script>
  3.     <script src="scripts/tests/myTests.js"></script>
  4.     <script src="scripts/tests/demoTest.js"></script>
only the last test file runs.  If I switch the order of the last two lines, the other set of tests runs.