Skip to content

Commit 3aa53d3

Browse files
committedNov 7, 2013
Merge pull request angular-ui#5 from caitp/tests
chore(stuff): add grunt/bower/npm/karma infrastructure
2 parents e2493f6 + b9b0733 commit 3aa53d3

File tree

6 files changed

+174
-0
lines changed

6 files changed

+174
-0
lines changed
 

‎.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/bower_components
2+
/node_modules

‎Gruntfile.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
var bower = require('bower');
2+
3+
module.exports = function(grunt) {
4+
grunt.loadNpmTasks('grunt-karma');
5+
6+
grunt.registerTask('bower', 'Install Bower packages.', function () {
7+
var done = this.async();
8+
9+
bower.commands.install()
10+
.on('log', function (result) {
11+
grunt.log.ok('bower: ' + result.id + ' ' + result.data.endpoint.name);
12+
})
13+
.on('error', grunt.fail.warn.bind(grunt.fail))
14+
.on('end', done);
15+
});
16+
17+
grunt.initConfig({
18+
karma: {
19+
options: {
20+
configFile: 'karma.conf.js'
21+
},
22+
watch: {
23+
background: true
24+
},
25+
once: {
26+
singleRun: true
27+
},
28+
travis: {
29+
singleRun: true,
30+
browsers: ['PhantomJS', 'Firefox']
31+
}
32+
}
33+
});
34+
35+
grunt.registerTask('default', ['bower', 'test']);
36+
grunt.registerTask('test', ['bower', 'karma:once']);
37+
grunt.registerTask('test:watch', ['bower', 'karma:watch']);
38+
grunt.registerTask('test:travis', ['bower', 'karma:travis']);
39+
};

‎bower.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "ui-select",
3+
"version": "0.0.1-SNAPSHOT",
4+
"homepage": "https://github.com/angular-ui/ui-select",
5+
"authors": [
6+
"AngularUI"
7+
],
8+
"description": "AngularJS-native implementation of Select2",
9+
"main": "select.js",
10+
"license": "MIT",
11+
"ignore": [
12+
"**/.*",
13+
"node_modules",
14+
"bower_components",
15+
"test",
16+
"tests"
17+
],
18+
"dependencies": {
19+
"angular": "~1.0.8",
20+
"angular-mocks": "~1.0.8",
21+
"jquery": "~2.0.3"
22+
}
23+
}

‎karma.conf.js

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
// Karma configuration
2+
// Generated on Wed Nov 06 2013 18:40:09 GMT-0500 (EST)
3+
4+
module.exports = function(config) {
5+
config.set({
6+
7+
// base path, that will be used to resolve files and exclude
8+
basePath: '',
9+
10+
11+
// frameworks to use
12+
frameworks: ['jasmine'],
13+
14+
15+
// list of files / patterns to load in the browser
16+
files: [
17+
'bower_components/jquery/jquery.js',
18+
'bower_components/angular/angular.js',
19+
'bower_components/angular-mocks/angular-mocks.js',
20+
'select.js',
21+
'test/**/*.spec.js'
22+
],
23+
24+
25+
// list of files to exclude
26+
exclude: [
27+
28+
],
29+
30+
31+
// test results reporter to use
32+
// possible values: 'dots', 'progress', 'junit', 'growl', 'coverage'
33+
reporters: ['progress'],
34+
35+
36+
// web server port
37+
port: 9876,
38+
39+
40+
// enable / disable colors in the output (reporters and logs)
41+
colors: true,
42+
43+
44+
// level of logging
45+
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
46+
logLevel: config.LOG_INFO,
47+
48+
49+
// enable / disable watching file and executing tests whenever any file changes
50+
autoWatch: true,
51+
52+
53+
// Start these browsers, currently available:
54+
// - Chrome
55+
// - ChromeCanary
56+
// - Firefox
57+
// - Opera (has to be installed with `npm install karma-opera-launcher`)
58+
// - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
59+
// - PhantomJS
60+
// - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
61+
browsers: ['Chrome'],
62+
63+
64+
// If browser does not capture in given timeout [ms], kill it
65+
captureTimeout: 60000,
66+
67+
68+
// Continuous Integration mode
69+
// if true, it capture browsers, run tests and exit
70+
singleRun: false
71+
});
72+
};

‎package.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "ui-select",
3+
"version": "0.1.0-SNAPSHOT",
4+
"description": "AngularJS-native implementation of Select2",
5+
"main": "select.js",
6+
"dependencies": {
7+
"grunt": "~0.4.1",
8+
"grunt-karma": "~0.6.2",
9+
"karma": "~0.10.4",
10+
"karma-chrome-launcher": "~0.1.0",
11+
"karma-firefox-launcher": "~0.1.0",
12+
"karma-jasmine": "~0.1.3",
13+
"karma-phantomjs-launcher": "~0.1.0"
14+
},
15+
"devDependencies": {
16+
"karma": "~0.10.4",
17+
"grunt": "~0.4.1",
18+
"grunt-karma": "~0.6.2",
19+
"bower": "~1.2.7"
20+
},
21+
"scripts": {
22+
"test": "grunt test"
23+
},
24+
"repository": {
25+
"type": "git",
26+
"url": "https://github.com/angular-ui/ui-select"
27+
},
28+
"author": "AngularUI",
29+
"license": "MIT",
30+
"bugs": {
31+
"url": "https://github.com/angular-ui/ui-select/issues"
32+
}
33+
}

‎test/select.spec.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
describe('select', function() {
2+
it('', function() {
3+
});
4+
});
5+

0 commit comments

Comments
 (0)