Skip to content
This repository was archived by the owner on Sep 8, 2022. It is now read-only.

Commit db79dec

Browse files
committed
Add Mocha and a set of pending tests
1 parent 32dc99f commit db79dec

File tree

4 files changed

+73
-18
lines changed

4 files changed

+73
-18
lines changed

.jshintrc

+12-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,18 @@
99
"require",
1010
"requirejs",
1111

12+
// Test
1213
"mocha",
13-
"chai",
14-
"sinon"
14+
// "chai",
15+
// "sinon",
16+
17+
"expect",
18+
"describe",
19+
"it",
20+
"before",
21+
"beforeEach",
22+
"after",
23+
"afterEach"
1524
],
1625

1726
// == Enforcing Options ===============================================
@@ -40,6 +49,7 @@
4049
// Turn on (relax):
4150
"boss" : true, // Tolerate assignments inside if, for & while. Usually conditions & loops are for comparison, not assignments.
4251
"globalstrict" : true, // Allow global "use strict" (also enables 'strict').
52+
"expr" : true, // Tolerate `ExpressionStatement` as Programs.
4353

4454
// Turn off (enforce):
4555
"multistr" : false, // Tolerate multi-line strings.
@@ -49,7 +59,6 @@
4959
"es5" : false, // Allow EcmaScript 5 syntax.
5060
"esnext" : false, // Allow ES.next specific features such as `const` and `let`.
5161
"evil" : false, // Tolerate use of `eval`.
52-
"expr" : false, // Tolerate `ExpressionStatement` as Programs.
5362
"funcscope" : false, // Tolerate declarations of variables inside of control structures while accessing them later from the outside.
5463
"iterator" : false, // Allow usage of __iterator__ property.
5564
"lastsemic" : false, // Tolerat missing semicolons when the it is omitted for the last statement in a one-line block.

build/test.js

+14-10
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,25 @@ module.exports = {
66
dependsOn: [],
77

88
build: [
9-
'jshint'
9+
'jshint',
10+
'mochaTest'
1011
],
1112

1213
config: {
1314
jshint: {
1415
options: {
15-
jshintrc : '.jshintrc'
16+
jshintrc : '.jshintrc',
17+
ignores: ['./node_modules/**/*']
1618
},
17-
all: [
18-
'./Pint.js',
19-
'./bin/**/*.js',
20-
'./lib/**/*.js',
21-
'./build/**/*.js',
22-
'./test/**/*.js'
23-
]
24-
}
19+
all: ['./**/*.js']
20+
},
21+
mochaTest: {
22+
test: {
23+
options: {
24+
reporter: "spec"
25+
},
26+
src: ["test/**/*.spec.js"]
27+
}
28+
},
2529
}
2630
};

package.json

+8-5
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,16 @@
1313
"async" : "~0.2.9"
1414
},
1515
"devDependencies": {
16-
"pint" : "0.0.3",
17-
"grunt-contrib-jshint" : "0.8.0"
16+
"pint": "0.0.3",
17+
"grunt-contrib-jshint": "0.8.0",
18+
"grunt-mocha-test": "0.8.1",
19+
"chai": "1.8.1",
20+
"sinon": "1.7.3"
1821
},
1922
"peerDependencies": {
20-
"grunt" : "~0.4.0",
21-
"grunt-cli" : "~0.1.11",
22-
"load-grunt-tasks" : "~0.2.1"
23+
"grunt": "~0.4.0",
24+
"grunt-cli": "~0.1.11",
25+
"load-grunt-tasks": "~0.2.1"
2326
},
2427
"engines": {
2528
"node": ">=0.10.22"

test/cli.spec.js

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
'use strict';
2+
3+
var assert = require('assert'),
4+
sinon = require('sinon'),
5+
chai = require('chai');
6+
7+
// Global setup.
8+
global.expect = chai.expect;
9+
10+
var cli = require('../lib/cli');
11+
12+
describe('cli', function () {
13+
describe('--version', function () {
14+
it('should log version in package.json');
15+
it('should not execute Pint');
16+
it('should ignore other options and parameters');
17+
it('should return with exit code 0');
18+
});
19+
20+
describe('--force', function () {
21+
it('should take -f or --force');
22+
it('should execute Pint');
23+
it('should ignore other options and parameters');
24+
it('should spawn a grunt process with the --force flag');
25+
it('should return with exit code 0');
26+
});
27+
28+
describe('--verbose', function () {
29+
it('should take -v or --verbose');
30+
it('should execute Pint');
31+
it('should spawn a grunt process with the --force flag');
32+
it('should return with exit code 0');
33+
});
34+
35+
describe('specific runners', function () {
36+
it('should ignore other options and parameters');
37+
it('should execute only the specified runners and their dependencies');
38+
});
39+
});

0 commit comments

Comments
 (0)