Skip to content

Commit c55b579

Browse files
committed
grunt test command now works
1 parent 6ac38e0 commit c55b579

5 files changed

+78
-37
lines changed

Gruntfile.js

+4-8
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,11 @@ module.exports = function(grunt) {
3838
}
3939
},
4040
karma: {
41+
unit: {
4142
options: {
42-
configFile: 'karma.conf.js'
43-
},
44-
watch: {
45-
background: true
46-
},
47-
continuous: {
48-
singleRun: true
49-
},
43+
configFile: 'karma.conf.js'
44+
}
45+
}
5046
},
5147
watch: {
5248
javascript: {

dist/angular-semantic-ui.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ angular.module('angularify.semantic.dimmer', [])
210210
//
211211
scope.$watch('model', function(val){
212212
if (val == false || val == undefined)
213-
return;
213+
scope.dimmer_class = 'ui page dimmer';
214214
else
215215
scope.dimmer_class = 'ui page active dimmer';
216216
});
@@ -394,6 +394,10 @@ angular.module('angularify.semantic.modal', [])
394394
}, function (modelValue){
395395
element.modal(modelValue ? 'show' : 'hide');
396396
});
397+
scope.$on('$destroy', function() {
398+
element.modal('hide');
399+
element.remove();
400+
});
397401
}
398402
}
399403
});

dist/angular-semantic-ui.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

karma.conf.js

+59-22
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,68 @@
1-
basePath = '.';
1+
// Karma configuration
2+
// Generated on Mon May 18 2015 13:35:51 GMT+0200 (CEST)
23

3-
files = [
4-
JASMINE,
5-
JASMINE_ADAPTER,
6-
'bower_components/jquery/dist/jquery.min.js',
7-
'bower_components/angular/angular.min.js',
8-
'bower_components/angular-mocks/angular-mocks.js',
9-
'src/**/*.js',
10-
];
4+
module.exports = function(config) {
5+
config.set({
116

12-
exclude = [
13-
'src/**/docs/*', 'src/**/README.md'
14-
];
7+
// base path that will be used to resolve all patterns (eg. files, exclude)
8+
basePath: '',
159

16-
browsers = [
17-
'PhantomJS'
18-
];
1910

20-
reporters = ['progress'];
11+
// frameworks to use
12+
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
13+
frameworks: ['jasmine'],
2114

22-
port = 9018;
23-
runnerPort = 9100;
2415

25-
colors = true;
16+
// list of files / patterns to load in the browser
17+
files: [
18+
'bower_components/jquery/dist/jquery.min.js',
19+
'bower_components/angular/angular.min.js',
20+
'bower_components/angular-mocks/angular-mocks.js',
21+
'src/**/*.js',
22+
],
2623

27-
logLevel = LOG_INFO
2824

29-
autoWatch = false;
25+
// list of files to exclude
26+
exclude: [
27+
],
3028

31-
singleRun = false;
29+
30+
// preprocess matching files before serving them to the browser
31+
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
32+
preprocessors: {
33+
},
34+
35+
36+
// test results reporter to use
37+
// possible values: 'dots', 'progress'
38+
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
39+
reporters: ['progress'],
40+
41+
42+
// web server port
43+
port: 9876,
44+
45+
46+
// enable / disable colors in the output (reporters and logs)
47+
colors: true,
48+
49+
50+
// level of logging
51+
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
52+
logLevel: config.LOG_INFO,
53+
54+
55+
// enable / disable watching file and executing tests whenever any file changes
56+
autoWatch: true,
57+
58+
59+
// start these browsers
60+
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
61+
browsers: ['PhantomJS'],
62+
63+
64+
// Continuous Integration mode
65+
// if true, Karma captures browsers, runs the tests and exits
66+
singleRun: false
67+
});
68+
};

package.json

+9-5
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,21 @@
2626
"dependencies": {},
2727
"devDependencies": {
2828
"grunt": "~0.4.1",
29-
"grunt-ngdocs": "~0.1.1",
30-
"grunt-conventional-changelog": "~0.1.2",
3129
"grunt-contrib-concat": "~0.3.0",
3230
"grunt-contrib-copy": "~0.5.0",
31+
"grunt-contrib-jshint": "~0.8.0",
3332
"grunt-contrib-uglify": "~0.3.0",
3433
"grunt-contrib-watch": "~0.5.0",
35-
"grunt-contrib-jshint": "~0.8.0",
36-
"karma-phantomjs-launcher" : "latest",
34+
"grunt-conventional-changelog": "~0.1.2",
3735
"grunt-html2js": "~0.2.0",
38-
"grunt-karma": "~0.4.4",
36+
"grunt-karma": "^2.0.0",
37+
"grunt-ngdocs": "~0.1.1",
38+
"jasmine-core": "^2.4.1",
39+
"karma": "^1.1.1",
40+
"karma-jasmine": "^1.0.2",
41+
"karma-phantomjs-launcher": "^1.0.0",
3942
"node-markdown": "0.1.1",
43+
"phantomjs-prebuilt": "^2.1.7",
4044
"semver": "~2.2.0",
4145
"shelljs": "~0.2.0"
4246
}

0 commit comments

Comments
 (0)