diff --git a/test/test.js b/test/test.js index 3383f27..6bc81b4 100644 --- a/test/test.js +++ b/test/test.js @@ -1,4 +1,4 @@ require('fs').readdirSync(__dirname).forEach(function(f) { - if (f.substr(0, 5) === 'test-') + if (f.substr(0, 5).toLowerCase() === 'test-') require('./' + f); }); \ No newline at end of file