forked from cybertk/abao
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
61 lines (49 loc) · 1.18 KB
/
Gruntfile.coffee
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
module.exports = (grunt) ->
require('time-grunt') grunt
# Dynamically load npm tasks
require('jit-grunt') grunt
grunt.initConfig
# Watching changes files *.coffee,
watch:
all:
files: [
"Gruntfile.coffee"
"src/**/*.coffee"
"test/**/*.coffee"
]
tasks: [
"mochaTest"
]
options:
nospawn: true
coffeecov:
compile:
src: 'lib'
dest: 'lib'
mochaTest:
test:
options:
reporter: 'mocha-phantom-coverage-reporter'
require: 'coffee-script/register'
src: [
# Unit Test
'test/unit/*.coffee'
# Acceptance Test
'test/cli-test.coffee'
]
shell:
coveralls:
command: 'cat coverage/coverage.lcov | ./node_modules/coveralls/bin/coveralls.js lib'
grunt.registerTask 'uploadCoverage', ->
return grunt.log.ok 'Bypass uploading' unless process.env['TRAVIS'] is 'true'
grunt.task.run 'shell:coveralls'
grunt.registerTask "default", [
"watch"
"mochaTest"
]
grunt.registerTask "test", [
"coffeecov"
"mochaTest"
"uploadCoverage"
]
return