fix spelling
This commit is contained in:
parent
a72b0dab61
commit
fb86e21ec6
2
test/fixtures/events/Gruntfile.js
vendored
2
test/fixtures/events/Gruntfile.js
vendored
@ -55,7 +55,7 @@ module.exports = function(grunt) {
|
||||
grunt.event.on('watch', function(action, filepath, target) {
|
||||
grunt.log.writeln(filepath + ' was indeed ' + action);
|
||||
if (target !== undefined) {
|
||||
grunt.log.writeln(target + ' specifc event was fired')
|
||||
grunt.log.writeln(target + ' specific event was fired');
|
||||
}
|
||||
clearTimeout(timeout);
|
||||
timeout = setTimeout(function() {
|
||||
|
@ -141,9 +141,9 @@ exports.events = {
|
||||
}], function(result) {
|
||||
result = helper.unixify(result);
|
||||
helper.verboseLog(result);
|
||||
test.ok(result.indexOf('lib/one/test.js was indeed changed\ntargetOne specifc event was fired') !== -1,
|
||||
test.ok(result.indexOf('lib/one/test.js was indeed changed\ntargetOne specific event was fired') !== -1,
|
||||
'event should have been emitted with targetOne specified');
|
||||
test.ok(result.indexOf('lib/two/test.js was indeed changed\ntargetTwo specifc event was fired') !== -1,
|
||||
test.ok(result.indexOf('lib/two/test.js was indeed changed\ntargetTwo specific event was fired') !== -1,
|
||||
'event should have been emitted with targetTwo specified');
|
||||
test.done();
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user