From 654a1a67e2d306864e481049a08fbac8408ab07d Mon Sep 17 00:00:00 2001 From: daviskoh Date: Fri, 13 Feb 2015 11:36:31 -0500 Subject: [PATCH] run only desired tests --- karma.conf.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/karma.conf.js b/karma.conf.js index 5aa2b833..61ca91f9 100644 --- a/karma.conf.js +++ b/karma.conf.js @@ -13,7 +13,8 @@ module.exports = function (config) { files: [ 'Layout.js', 'Layout-test-utils.js', - '__tests__/*.js' + '__tests__/Layout-test.js', + '__tests__/Layout-consts-test.js' ], plugins: [ @@ -38,4 +39,4 @@ module.exports = function (config) { singleRun: false }); -}; \ No newline at end of file +};