-
Notifications
You must be signed in to change notification settings - Fork 62
/
Gruntfile.js
76 lines (65 loc) · 1.99 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
/*
* grunt-contrib-clean
* https://gruntjs.com/
*
* Copyright (c) 2016 Tim Branyen, contributors
* Licensed under the MIT license.
*/
'use strict';
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
jshint: {
all: [
'Gruntfile.js',
'tasks/*.js',
'<%= nodeunit.tests %>'
],
options: {
jshintrc: '.jshintrc'
}
},
// Configuration to be run (and then tested).
clean: {
shortPathTest: ['tmp/sample_short'],
longPathTest: {
src: ['tmp/sample_long']
},
exclude: ['tmp/end_01/**/*', '!tmp/end_01/1.txt'],
excludeSub: ['tmp/end_02/**/*.*', '!tmp/end_02/2/**/*']
},
// Unit tests.
nodeunit: {
tests: ['test/*_test.js']
}
});
// Actually load this plugin's task(s).
grunt.loadTasks('tasks');
// These plugins provide necessary tasks.
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-nodeunit');
grunt.loadNpmTasks('grunt-contrib-internal');
// Setup a test helper to create some folders to clean.
grunt.registerTask('copy', 'Copy fixtures to a temp location.', function() {
grunt.file.copy('test/fixtures/sample_long/long.txt', 'tmp/sample_long/long.txt');
grunt.file.copy('test/fixtures/sample_short/short.txt', 'tmp/sample_short/short.txt');
var cwd = 'test/fixtures/start';
grunt.file.expand({
cwd: cwd
}, '**/*.*')
.forEach(function (file) {
var ecwd = 'test/expected';
grunt.file.expand({
cwd: ecwd
}, '*')
.forEach(function (dir) {
grunt.file.copy(cwd + '/' + file, 'tmp/' + dir + '/' + file);
});
});
});
// Whenever the 'test' task is run, first create some files to be cleaned,
// then run this plugin's task(s), then test the result.
grunt.registerTask('test', ['jshint', 'copy', 'clean', 'nodeunit']);
// By default, lint and run all tests.
grunt.registerTask('default', ['jshint', 'test', 'build-contrib']);
};