forked from cloudchen/grunt-template-jasmine-requirejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
94 lines (89 loc) · 2.33 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*global module:false, define:false*/
module.exports = function(grunt) {
"use strict";
// Project configuration.
grunt.initConfig({
// Task configuration.
jshint: {
options: {
node : true,
curly: true,
eqeqeq: true,
immed: true,
latedef: true,
newcap: true,
noarg: true,
sub: true,
undef: true,
unused: true,
boss: true,
eqnull: true,
globals: {}
},
gruntfile: {
src: 'Gruntfile.js'
},
lib_test: {
src: ['src/**/*.js', '!src/lib/**/*.js']
}
},
watch: {
gruntfile: {
files: '<%= jshint.gruntfile.src %>',
tasks: ['jshint:gruntfile']
},
lib_test: {
files: '<%= jshint.lib_test.src %>',
tasks: ['jshint:lib_test']
}
},
connect: {
test: {
port: 8000,
base: '.'
}
},
jasmine: {
requirejs: {
src: 'test/fixtures/requirejs/src/**/*.js',
options: {
specs: 'test/fixtures/requirejs/spec/*Spec.js',
helpers: 'test/fixtures/requirejs/spec/*Helper.js',
host: 'http://127.0.0.1:<%= connect.test.port %>/',
template: require('./'),
templateOptions: {
requireConfigFile: 'test/fixtures/requirejs/src/main.js',
requireConfig : {
baseUrl: './test/fixtures/requirejs/src/',
config: {
sum: {
description: "Sum module (overridden)"
}
},
"shim": {
"fakeShim": {
"exports": 'fakeShim',
"init": function () {
return "this is fake shim";
}
}
},
"callback": function() {
define('inlineModule', function() {
return 'this is inline module';
});
}
}
}
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-jasmine');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.registerTask('test', ['connect', 'jasmine:requirejs']);
// Default task.
grunt.registerTask('default', ['jshint','test']);
};