@@ -121,6 +121,7 @@ var pathToStrictD3 = path.join(__dirname, '..', '..', 'tasks', 'util', 'strict_d
121121var pathToJQuery = path . join ( __dirname , 'assets' , 'jquery-1.8.3.min.js' ) ;
122122var pathToCustomMatchers = path . join ( __dirname , 'assets' , 'custom_matchers.js' ) ;
123123var pathToUnpolyfill = path . join ( __dirname , 'assets' , 'unpolyfill.js' ) ;
124+ var pathToSaneTopojsonDist = path . join ( __dirname , '..' , '..' , 'node_modules' , 'sane-topojson' , 'dist' ) ;
124125var pathToMathJax = path . join ( constants . pathToVendor , 'extras' , 'mathjax' ) ;
125126
126127var reporters = [ ] ;
@@ -179,11 +180,11 @@ func.defaultConfig = {
179180 files : [
180181 pathToCustomMatchers ,
181182 pathToUnpolyfill ,
182- // available to fetch from /base/path/to /mathjax
183+ // available to fetch from /base/vendor/extras /mathjax/
183184 // more info: http://karma-runner.github.io/3.0/config/files.html
184185 { pattern : pathToMathJax + '/**' , included : false , watched : false , served : true } ,
185- // available to fetch local topojson files
186- { pattern : constants . pathToTopojsonVendor + '/**' , included : false , watched : false , served : true }
186+ // available to fetch from /base/node_modules/sane- topojson/dist/
187+ { pattern : pathToSaneTopojsonDist + '/**' , included : false , watched : false , served : true }
187188 ] ,
188189
189190 // list of files / pattern to exclude
0 commit comments