# make test
 #
-# This target runs all the tests. This can be used for testing all browsers.
-test: unit-test shell-test browser-test
+# This target runs all the tests excluding the unit-test. This can be used for
+# testing all browsers.
+test: shell-test browser-test
 
 #
 # Create production output (pdf.js, and corresponding changes to web files)
 #
 # This target runs in-browser unit tests with js-test-driver and jasmine unit
 # test framework.
-
 unit-test:
        @cd test/unit/ ; make ;
 
 
 MANIFEST=../resources/browser_manifests/browser_manifest.json
 BROWSERS=$(shell echo `sed -n 's/.*"path":\(.*\)/\1,/p' $(MANIFEST) | tr -d '\n' | \
   sed 's/\(Google Chrome\.app\)/\1\/Contents\/MacOS\/Google Chrome/' | \
+  sed 's/\(Aurora\.app\)/\1\/Contents\/MacOS\/firefox-bin/' | \
   sed 's/\(Firefox[ Beta]*\.app\)/\1\/Contents\/MacOS\/firefox-bin/' \
 `)