Created
March 19, 2019 23:37
-
-
Save jspies/dcde3b5a6249d78a98e4d7debd3d0aa1 to your computer and use it in GitHub Desktop.
Revisions
-
jspies created this gist
Mar 19, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,9 @@ const glob = require("glob"); (async () => { const matches = glob.sync("**/*_test.mjs"); for (const match of matches) { await import(`../${match}`) } run(); })()