Commit af51d648 by David Baumgold

Load *.js files more generically for Jasmine tests

parent 0052eaac
...@@ -220,10 +220,9 @@ PIPELINE_JS = { ...@@ -220,10 +220,9 @@ PIPELINE_JS = {
'main': { 'main': {
'source_filenames': sorted( 'source_filenames': sorted(
rooted_glob(COMMON_ROOT / 'static/', 'coffee/src/**/*.js') + rooted_glob(COMMON_ROOT / 'static/', 'coffee/src/**/*.js') +
rooted_glob(PROJECT_ROOT / 'static/', 'coffee/src/**/*.js') rooted_glob(PROJECT_ROOT / 'static/', 'coffee/src/**/*.js') +
) + ['js/hesitate.js', 'js/base.js', rooted_glob(PROJECT_ROOT / 'static/', 'js/**/*.js')
'js/models/feedback.js', 'js/views/feedback.js', ) + ['js/hesitate.js', 'js/base.js'],
'js/models/section.js', 'js/views/section.js'],
'output_filename': 'js/cms-application.js', 'output_filename': 'js/cms-application.js',
'test_order': 0 'test_order': 0
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment