Skip to content

Commit 2fdf362

Browse files
committed
Move mocha to npm scripts.
1 parent 34a65fd commit 2fdf362

File tree

3 files changed

+5
-26
lines changed

3 files changed

+5
-26
lines changed

Gruntfile.js

+2-15
Original file line numberDiff line numberDiff line change
@@ -50,25 +50,12 @@ module.exports = function (grunt) {
5050
dest: 'tests/outputUrl.css'
5151
}]
5252
}
53-
},
54-
55-
// Unit tests.
56-
simplemocha: {
57-
test: {
58-
src: 'tests/selectors.js'
59-
}
6053
}
6154
});
6255

6356
// Actually load this plugin's task(s).
6457
grunt.loadTasks('tasks');
65-
grunt.loadNpmTasks('grunt-simple-mocha');
66-
67-
grunt.registerTask('test', [
68-
'uncss',
69-
'simplemocha'
70-
]);
7158

72-
// By default, lint and run all tests.
73-
grunt.registerTask('default', 'test');
59+
grunt.registerTask('test', 'uncss');
60+
grunt.registerTask('default', 'uncss');
7461
};

package-lock.json

-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@
2828
"node": ">=10"
2929
},
3030
"scripts": {
31+
"mocha": "mocha \"tests/*.js\"",
3132
"xo": "xo",
32-
"test": "npm run xo && grunt test"
33+
"test": "npm run xo && grunt test && npm run mocha"
3334
},
3435
"dependencies": {
3536
"chalk": "^4.1.0",
@@ -39,7 +40,7 @@
3940
"devDependencies": {
4041
"chai": "^4.2.0",
4142
"grunt": "^1.1.0",
42-
"grunt-simple-mocha": "^0.4.1",
43+
"mocha": "^8.2.1",
4344
"time-grunt": "^2.0.0",
4445
"xo": "^0.37.1"
4546
},

0 commit comments

Comments
 (0)