@@ -23,7 +23,6 @@ angularFiles = {
23
23
'src/service/filter/filters.js' ,
24
24
'src/service/filter/limitTo.js' ,
25
25
'src/service/filter/orderBy.js' ,
26
- 'src/service/formFactory.js' ,
27
26
'src/service/interpolate.js' ,
28
27
'src/service/location.js' ,
29
28
'src/service/log.js' ,
@@ -39,12 +38,29 @@ angularFiles = {
39
38
'src/service/http.js' ,
40
39
'src/service/httpBackend.js' ,
41
40
'src/service/locale.js' ,
42
- 'src/directives.js' ,
43
- 'src/markups.js' ,
44
- 'src/widgets.js' ,
45
- 'src/widget/form.js' ,
46
- 'src/widget/input.js' ,
47
- 'src/widget/select.js'
41
+ 'src/directive/directives.js' ,
42
+ 'src/directive/a.js' ,
43
+ 'src/directive/booleanAttrDirs.js' ,
44
+ 'src/directive/form.js' ,
45
+ 'src/directive/input.js' ,
46
+ 'src/directive/ngBind.js' ,
47
+ 'src/directive/ngClass.js' ,
48
+ 'src/directive/ngCloak.js' ,
49
+ 'src/directive/ngController.js' ,
50
+ 'src/directive/ngEventDirs.js' ,
51
+ 'src/directive/ngInclude.js' ,
52
+ 'src/directive/ngInit.js' ,
53
+ 'src/directive/ngNonBindable.js' ,
54
+ 'src/directive/ngPluralize.js' ,
55
+ 'src/directive/ngRepeat.js' ,
56
+ 'src/directive/ngShowHide.js' ,
57
+ 'src/directive/ngStyle.js' ,
58
+ 'src/directive/ngSwitch.js' ,
59
+ 'src/directive/ngTransclude.js' ,
60
+ 'src/directive/ngView.js' ,
61
+ 'src/directive/script.js' ,
62
+ 'src/directive/select.js' ,
63
+ 'src/directive/style.js'
48
64
] ,
49
65
50
66
'angularScenario' : [
@@ -84,7 +100,7 @@ angularFiles = {
84
100
'test/*.js' ,
85
101
'test/service/*.js' ,
86
102
'test/service/filter/*.js' ,
87
- 'test/widget /*.js' ,
103
+ 'test/directive /*.js' ,
88
104
'example/personalLog/test/*.js'
89
105
] ,
90
106
@@ -144,7 +160,7 @@ angularFiles = {
144
160
'test/jstd-scenario-adapter/*.js' ,
145
161
'test/*.js' ,
146
162
'test/service/*.js' ,
147
- 'test/widget /*.js' ,
163
+ 'test/directive /*.js' ,
148
164
'example/personalLog/test/*.js'
149
165
] ,
150
166
@@ -158,18 +174,18 @@ angularFiles = {
158
174
// Execute only in slim-jim
159
175
if ( typeof JASMINE_ADAPTER !== 'undefined' ) {
160
176
// SlimJim config
161
- files = [ JASMINE_ADAPTER ] ;
177
+ files = [ JASMINE , JASMINE_ADAPTER ] ;
162
178
angularFiles . jstd . forEach ( function ( pattern ) {
163
179
// replace angular source
164
180
if ( pattern === '@angularSrc' ) files = files . concat ( angularFiles . angularSrc ) ;
165
- // ignore jstd files
166
- else if ( ! / j s t d - ( s c e n a r i o - ) ? a d a p t e r / . test ( pattern ) ) files . push ( pattern ) ;
181
+ // ignore jstd and jasmine files
182
+ else if ( ! / j s t d | j a s m i n e / . test ( pattern ) ) files . push ( pattern ) ;
167
183
} ) ;
168
184
169
185
exclude = angularFiles . jstdExclude ;
170
186
171
187
autoWatch = true ;
172
188
autoWatchInterval = 1 ;
173
- logLevel = LOG_ERROR ;
189
+ logLevel = LOG_INFO ;
174
190
logColors = true ;
175
191
}
0 commit comments