From 0de765aa25637cd85e22eebd11b6c4c8a32faf14 Mon Sep 17 00:00:00 2001 From: Dan Date: Thu, 24 May 2018 22:30:07 -0230 Subject: Clean up for send refactor PR. --- test/integration/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'test') diff --git a/test/integration/index.js b/test/integration/index.js index 7789eb283..b266ddf37 100644 --- a/test/integration/index.js +++ b/test/integration/index.js @@ -2,8 +2,7 @@ const fs = require('fs') const path = require('path') const pump = require('pump') const browserify = require('browserify') -let tests = fs.readdirSync(path.join(__dirname, 'lib')) -tests = tests.filter(fln => fln.match(/send/)) +const tests = fs.readdirSync(path.join(__dirname, 'lib')) const bundlePath = path.join(__dirname, 'bundle.js') const b = browserify() -- cgit