Files
taimed/node_modules/grunt-newer/test/integration/newer-modify-one.spec.js
2025-07-24 17:21:45 +08:00

24 lines
469 B
JavaScript

var path = require('path');
var helper = require('../helper');
var name = 'newer-modify-one';
var gruntfile = path.join(name, 'gruntfile.js');
describe(name, function() {
var fixture;
it('runs the default task (see ' + gruntfile + ')', function(done) {
this.timeout(6000);
helper.buildFixture(name, function(error, dir) {
fixture = dir;
done(error);
});
});
after(function(done) {
helper.afterFixture(fixture, done);
});
});