24
1
Fork 0

only include js files in frontend tests. fixes #834

This commit is contained in:
Danny Coates 2018-05-29 14:39:54 -07:00
parent bea7d30836
commit 3e65f3a906
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 3 additions and 1 deletions

View File

@ -6,7 +6,9 @@ function kv(f) {
}
module.exports = function() {
const files = fs.readdirSync(path.join(__dirname, 'tests'));
const files = fs
.readdirSync(path.join(__dirname, 'tests'))
.filter(p => /\.js$/.test(p));
const code = "require('fast-text-encoding');\n" + files.map(kv).join(';\n');
return {
code,