Adapt ghost casperjs config file

This commit is contained in:
grosbouddha 2013-05-27 00:45:22 +02:00
parent fa356c3564
commit fdcaad9d39

View File

@ -25,21 +25,26 @@ module.exports = function(grunt) {
} }
}, },
ghost: { ghost: {
dist: {
filesSrc: ['tests/integration/casperjs/*_test.js'],
options: {
args: {
baseUrl: 'http://localhost:' +
'<%= connect.www.options.port %>/'
},
direct: false,
logLevel: 'error',
printCommand: false,
printFilePaths: true
}
}
/*
test: { test: {
files: [{ files: [{
src: ['tests/integration/casperjs/*_test.js'] src: ['tests/integration/casperjs/*_test.js']
}] }]
}, },
options: { */
args: {
baseUrl: 'http://localhost:' +
'<%= connect.www.options.port %>/'
},
direct: false,
logLevel: 'error',
printCommand: false,
printFilePaths: true
}
} }
}); });