updated integration suite to pull rest-api-spec from elasticsearch repo
This commit is contained in:
@ -1,24 +1,23 @@
|
||||
module.exports = {
|
||||
generate: {
|
||||
exec: 'node scripts/generate'
|
||||
options: {
|
||||
cwd: './scripts'
|
||||
},
|
||||
browser_unit_tests: {
|
||||
exec: 'node scripts/run_tests --unit --no-server',
|
||||
generate: {
|
||||
exec: 'node generate'
|
||||
},
|
||||
browser_integration_tests: {
|
||||
exec: 'node run_browser_integration_suite',
|
||||
options: {
|
||||
cwd: '.',
|
||||
passArgs: [
|
||||
'port',
|
||||
'host'
|
||||
'browsers'
|
||||
]
|
||||
}
|
||||
},
|
||||
browser_integration_tests: {
|
||||
exec: 'node scripts/run_tests --integration --no-server',
|
||||
browser_unit_tests: {
|
||||
exec: './node_modules/.bin/testling .',
|
||||
options: {
|
||||
cwd: '.',
|
||||
passArgs: [
|
||||
'port',
|
||||
'host'
|
||||
'x'
|
||||
]
|
||||
}
|
||||
}
|
||||
|
||||
@ -16,6 +16,11 @@ module.exports = function (grunt) {
|
||||
'mochacov:integration',
|
||||
]);
|
||||
|
||||
grunt.registerTask('unit_test', [
|
||||
'jshint',
|
||||
'mochacov:unit'
|
||||
]);
|
||||
|
||||
grunt.registerTask('coverage', [
|
||||
'mochacov:make_coverage_html',
|
||||
'open:coverage'
|
||||
|
||||
Reference in New Issue
Block a user