Files
elasticsearch-js/grunt/config/run.js
Spencer Alger d1e04c57fb Updated testing to pull yaml tests from a specific es branch, and setup
travis script that will download the latest build from a branch or a release
based on the config it receives.
2014-01-07 14:34:37 -07:00

36 lines
634 B
JavaScript

module.exports = {
generate: {
exec: 'node ./scripts/generate/index.js',
options: {
passArgs: [
'verbose',
'es_branch'
]
}
},
generate_yaml_tests: {
exec: 'node ./scripts/generate/index.js --no-api',
options: {
passArgs: [
'verbose',
'es_branch'
]
}
},
browser_integration_tests: {
exec: 'node ./scripts/run_browser_integration_suite',
options: {
passArgs: [
'browsers'
]
}
},
browser_unit_tests: {
exec: './node_modules/.bin/testling .',
options: {
passArgs: [
'x'
]
}
}
};