Skip to content

Commit bbd3a3f

Browse files
committed
chore: Update slim-jim
1 parent e86bafe commit bbd3a3f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

angularFiles.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -157,18 +157,18 @@ angularFiles = {
157157
// Execute only in slim-jim
158158
if (typeof JASMINE_ADAPTER !== 'undefined') {
159159
// SlimJim config
160-
files = [JASMINE_ADAPTER];
160+
files = [JASMINE, JASMINE_ADAPTER];
161161
angularFiles.jstd.forEach(function(pattern) {
162162
// replace angular source
163163
if (pattern === '@angularSrc') files = files.concat(angularFiles.angularSrc);
164-
// ignore jstd files
165-
else if (!/jstd-(scenario-)?adapter/.test(pattern)) files.push(pattern);
164+
// ignore jstd and jasmine files
165+
else if (!/jstd|jasmine/.test(pattern)) files.push(pattern);
166166
});
167167

168168
exclude = angularFiles.jstdExclude;
169169

170170
autoWatch = true;
171171
autoWatchInterval = 1;
172-
logLevel = LOG_ERROR;
172+
logLevel = LOG_INFO;
173173
logColors = true;
174174
}

0 commit comments

Comments
 (0)