From 6439aedac4d618bbd9632e869435c3961f5c6abc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Mu=C3=B1oz?= Date: Sat, 9 May 2020 13:45:31 -0400 Subject: [PATCH] Fix test to actually check generated files with destDir --- tests/index.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/index.js b/tests/index.js index 6a6a3e7..f3dcc39 100644 --- a/tests/index.js +++ b/tests/index.js @@ -255,10 +255,6 @@ describe('broccoli-funnel', function() { let node = new Funnel(inputPath, { include: [/.png$/, /.js$/], destDir: 'foo', - - processFile() { - /* do nothing */ - }, }); output = createBuilder(node); @@ -269,7 +265,9 @@ describe('broccoli-funnel', function() { 'foo/', 'foo/subdir1/', 'foo/subdir1/subsubdir1/', + 'foo/subdir1/subsubdir1/foo.png', 'foo/subdir1/subsubdir2/', + 'foo/subdir1/subsubdir2/some.js', ]); });