From 63d8107d1c8fb16cb9e39e861e106348262be5fd Mon Sep 17 00:00:00 2001 From: Tobias Bosch Date: Fri, 6 Feb 2015 13:36:52 -0800 Subject: [PATCH] =?UTF-8?q?fix(setup):=20don=E2=80=99t=20transpile=20trans?= =?UTF-8?q?piler=20sources=20via=20karma,=20only=20the=20specs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- karma-js.conf.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/karma-js.conf.js b/karma-js.conf.js index d90b9c07d6..70a6961ab5 100644 --- a/karma-js.conf.js +++ b/karma-js.conf.js @@ -11,7 +11,7 @@ module.exports = function(config) { // Sources and specs. // Loaded through the es6-module-loader, in `test-main.js`. {pattern: 'modules/**', included: false}, - {pattern: 'tools/transpiler/**', included: false}, + {pattern: 'tools/transpiler/spec/**', included: false}, 'node_modules/traceur/bin/traceur-runtime.js', 'traceur-runtime-patch.js', @@ -33,8 +33,8 @@ module.exports = function(config) { preprocessors: { 'modules/**/*.js': ['traceur'], 'modules/**/*.es6': ['traceur'], - 'tools/transpiler/**/*.js': ['traceur'], - 'tools/transpiler/**/*.es6': ['traceur'], + 'tools/transpiler/spec/**/*.js': ['traceur'], + 'tools/transpiler/spec/**/*.es6': ['traceur'], }, traceurPreprocessor: {