diff --git a/tests/run.js b/tests/run.js index 6c88f8708a..6694a9566e 100644 --- a/tests/run.js +++ b/tests/run.js @@ -28,13 +28,15 @@ for (const language in testSuite) { for (const filePath of testFiles) { const fileName = path.basename(filePath, path.extname(filePath)); - it("– should pass test case '" + fileName + "'", function () { - if (path.extname(filePath) === '.test') { - TestCase.runTestCase(language, filePath, update ? 'update' : insert ? 'insert' : 'none'); - } else { - TestCase.runTestsWithHooks(language, require(filePath)); - } - }); + if (fileName[0] != '.') { + it("– should pass test case '" + fileName + "'", function () { + if (path.extname(filePath) === '.test') { + TestCase.runTestCase(language, filePath, update ? 'update' : insert ? 'insert' : 'none'); + } else { + TestCase.runTestsWithHooks(language, require(filePath)); + } + }); + } } }); }(language, testSuite[language]));