Skip to content

Commit 624da90

Browse files
committedOct 13, 2015
Update Karma config to find the templates
1 parent 22e5d08 commit 624da90

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed
 

‎karma.conf.js

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ module.exports = function(config) {
2626
'node_modules/karma-requirejs/lib/adapter.js',
2727

2828
{pattern: 'src/**/*.js', included: false},
29+
{pattern: 'src/templates/*.html', included: false},
2930
{pattern: 'lib/**/*.js', included: false},
3031
{pattern: 'test/spec/**/*_spec.js', included: false},
3132
{pattern: 'test/mock.js', included: false},

‎test/runner.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ require.config({
2121
'flight': '../lib/flight.min',
2222
'd3': '../lib/d3.min',
2323
'Tabletop': '../lib/tabletop',
24-
'bootstrap': '../lib/bootstrap.min'
24+
'bootstrap': '../lib/bootstrap.min',
25+
'text': '../lib/text'
2526
},
2627
shim: {
2728
'handlebars': {

0 commit comments

Comments
 (0)
Please sign in to comment.