aboutsummaryrefslogtreecommitdiff
path: root/test/run-tests.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/run-tests.js')
-rwxr-xr-xtest/run-tests.js12
1 files changed, 1 insertions, 11 deletions
diff --git a/test/run-tests.js b/test/run-tests.js
index 1b146e86..3ed28df5 100755
--- a/test/run-tests.js
+++ b/test/run-tests.js
@@ -22,9 +22,6 @@ if (failures) {
var mocha_tests = require("./mocha.js");
mocha_tests();
-var run_sourcemaps_tests = require('./sourcemaps');
-run_sourcemaps_tests();
-
/* -----[ utils ]----- */
function tmpl() {
@@ -49,16 +46,9 @@ function log_test(name) {
}
function find_test_files(dir) {
- var files = fs.readdirSync(dir).filter(function(name){
+ return fs.readdirSync(dir).filter(function(name) {
return /\.js$/i.test(name);
});
- if (process.argv.length > 2) {
- var x = process.argv.slice(2);
- files = files.filter(function(f){
- return x.indexOf(f) >= 0;
- });
- }
- return files;
}
function test_directory(dir) {