Commit | Line | Data |
---|---|---|
5438399c TO |
1 | var cv = require('civicrm-cv')({mode: 'sync'}); |
2 | var _CV = cv('vars:show'); | |
3 | var cmd = | |
4 | 'CRM_Core_BAO_ConfigSetting::enableComponent("CiviCase");' + | |
5 | 'global $civicrm_root;' + | |
6 | '$f = CRM_Utils_File::addTrailingSlash($civicrm_root)."tmp/karma.cv.js";' + | |
7 | 'mkdir(dirname($f), 0777, TRUE);' + | |
8 | '$a=Civi::service("angular");' + | |
9 | '$data = "var CRM = CRM || {}; CRM.angular =";' + | |
10 | '$data .= json_encode(array(' + | |
11 | ' "modules" => array_keys($a->getModules()),' + | |
12 | ' "requires" => $a->getResources(array_keys($a->getModules()), "requires","requires"),' + | |
13 | '));' + | |
14 | '$data .= ";";' + | |
15 | 'file_put_contents($f, $data);' + | |
16 | 'return $f;'; | |
17 | var angularTempFile = cv(['php:eval', '-U', _CV.ADMIN_USER, cmd]); | |
18 | ||
416abe87 PH |
19 | module.exports = function(config) { |
20 | config.set({ | |
21 | autoWatch: true, | |
5915de41 | 22 | browsers: ['PhantomJS'], |
416abe87 PH |
23 | exclude: [ |
24 | ], | |
25 | files: [ | |
6a77bdf4 | 26 | 'bower_components/phantomjs-polyfill/bind-polyfill.js', |
416abe87 PH |
27 | 'bower_components/jquery/dist/jquery.min.js', |
28 | 'bower_components/jquery-ui/jquery-ui.min.js', | |
b2df037d | 29 | 'bower_components/lodash-compat/lodash.min.js', |
e1ef4e11 | 30 | 'bower_components/select2/select2.min.js', |
416abe87 | 31 | 'packages/jquery/plugins/jquery.blockUI.js', |
3426f10d | 32 | 'bower_components/jquery-validation/dist/jquery.validate.min.js', |
401f6f82 | 33 | 'packages/jquery/plugins/jquery.timeentry.js', |
416abe87 | 34 | 'js/Common.js', |
403c52ac | 35 | 'js/crm.datepicker.js', |
416abe87 | 36 | 'bower_components/angular/angular.js', |
5438399c TO |
37 | 'js/crm.angular.js', |
38 | angularTempFile, | |
416abe87 PH |
39 | 'bower_components/angular-file-upload/angular-file-upload.js', |
40 | 'bower_components/angular-jquery-dialog-service/dialog-service.js', | |
41 | 'bower_components/angular-route/angular-route.js', | |
42 | 'bower_components/angular-mocks/angular-mocks.js', | |
43 | 'bower_components/angular-ui-sortable/sortable.js', | |
44 | 'bower_components/angular-ui-utils/ui-utils.js', | |
45 | 'bower_components/angular-unsavedChanges/dist/unsavedChanges.js', | |
416abe87 | 46 | 'js/crm.ajax.js', |
4c78db19 TO |
47 | 'ang/*.js', |
48 | 'ang/**/*.js', | |
416abe87 PH |
49 | 'tests/karma/lib/*.js', |
50 | 'tests/karma/**/*.js', | |
4c78db19 | 51 | 'ang/**/*.html' |
416abe87 | 52 | ], |
401f6f82 | 53 | preprocessors : { |
4c78db19 | 54 | 'ang/**/*.html' : ['ng-html2js'] |
401f6f82 TO |
55 | }, |
56 | ||
57 | ngHtml2JsPreprocessor: { | |
4c78db19 | 58 | stripPrefix: 'ang/', |
401f6f82 TO |
59 | prependPrefix: '~/', |
60 | moduleName: 'crmResource' | |
61 | }, | |
416abe87 PH |
62 | frameworks: ['jasmine'], |
63 | logLevel: config.LOG_INFO, | |
64 | port: 9876, | |
65 | reporters: ['progress'], | |
8ae4e322 | 66 | junitReporter: { |
75181cda | 67 | useBrowserName: false, |
8ae4e322 TO |
68 | outputFile: 'tests/output/karma.xml', |
69 | suite: '' | |
70 | }, | |
b43a993a | 71 | singleRun: false |
416abe87 PH |
72 | }); |
73 | }; |