We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8de121d commit c02b05fCopy full SHA for c02b05f
tasks/test.js
@@ -33,7 +33,7 @@ module.exports = function(grunt) {
33
34
var runner = childProcess.fork('./spec/env/runner', [], {stdio: 'inherit'});
35
runner.on('close', function(code) {
36
- if (code != 0) {
+ if (code !== 0) {
37
grunt.fatal(code + ' tests failed');
38
}
39
done();
@@ -55,7 +55,7 @@ module.exports = function(grunt) {
55
56
var runner = childProcess.fork('./spec/env/runner', ['--min'], {stdio: 'inherit'});
57
58
59
60
61
0 commit comments