Skip to content

Commit b26a57d

Browse files
author
Dean Sofer
committed
* 'master' of https://github.com/angular-ui/ui-select2: chore(tests): Setting up test env Conflicts: src/ui-select2.js tests/test.conf.js
2 parents bca5ce7 + 92733e3 commit b26a57d

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

src/ui-select2.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,11 @@
55
* This change is so that you do not have to do an additional query yourself on top of Select2's own query
66
* @params [options] {object} The configuration options passed to $.fn.select2(). Refer to the documentation
77
*/
8+
<<<<<<< HEAD:src/ui-select2.js
89
angular.module('ui.select2', []).directive('uiSelect2', ['uiSelect2Config', '$timeout', function (uiSelect2Config, $timeout) {
10+
=======
11+
angular.module('ui.select2', []).directive('uiSelect2', ['ui.config', '$timeout', function (uiConfig, $timeout) {
12+
>>>>>>> 92733e3ba9527423adc5e7433cd6918590f04e65:select2.js
913
var options = {};
1014
if (uiSelect2Config) {
1115
angular.extend(options, uiSelect2Config);

tests/test.conf.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,18 @@ basePath = '..';
22
files = [
33
JASMINE,
44
JASMINE_ADAPTER,
5+
<<<<<<< HEAD
56
'components/jquery/jquery.js',
67
'components/angular/angular.js',
78
'components/angular-mocks/angular-mocks.js',
89
'components/select2/select2.js',
910
'src/*.js',
1011
'tests/*.js'
12+
=======
13+
'libs/angular.js/angular.js',
14+
'libs/select2/select2.js',
15+
'tests/*.js',
16+
'*.js'
17+
>>>>>>> 92733e3ba9527423adc5e7433cd6918590f04e65
1118
];
1219
runOnce = true;

0 commit comments

Comments
 (0)