From 9b9def257212a74b6e45911378c035a113688260 Mon Sep 17 00:00:00 2001 From: subtle-byte Date: Sun, 16 May 2021 03:54:55 +0300 Subject: [PATCH] Fixing not running index.js tests --- test/test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.ts b/test/test.ts index 181e9351c1..7b7f1008d9 100644 --- a/test/test.ts +++ b/test/test.ts @@ -8,7 +8,7 @@ require('../internal'); console.clear(); -const test_folders = glob('*/index.ts', { cwd: 'test' }); +const test_folders = glob('*/index.{js,ts}', { cwd: 'test' }); const solo_folders = test_folders.filter(folder => /\.solo/.test(folder)); if (solo_folders.length) {