Skip to content

Commit 63d8107

Browse files
committed
fix(setup): don’t transpile transpiler sources via karma, only the specs
1 parent 713b670 commit 63d8107

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

karma-js.conf.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ module.exports = function(config) {
1111
// Sources and specs.
1212
// Loaded through the es6-module-loader, in `test-main.js`.
1313
{pattern: 'modules/**', included: false},
14-
{pattern: 'tools/transpiler/**', included: false},
14+
{pattern: 'tools/transpiler/spec/**', included: false},
1515

1616
'node_modules/traceur/bin/traceur-runtime.js',
1717
'traceur-runtime-patch.js',
@@ -33,8 +33,8 @@ module.exports = function(config) {
3333
preprocessors: {
3434
'modules/**/*.js': ['traceur'],
3535
'modules/**/*.es6': ['traceur'],
36-
'tools/transpiler/**/*.js': ['traceur'],
37-
'tools/transpiler/**/*.es6': ['traceur'],
36+
'tools/transpiler/spec/**/*.js': ['traceur'],
37+
'tools/transpiler/spec/**/*.es6': ['traceur'],
3838
},
3939

4040
traceurPreprocessor: {

0 commit comments

Comments
 (0)