20 lines
527 B
JavaScript
20 lines
527 B
JavaScript
/*jshint node:true*/
|
|
module.exports = {
|
|
"framework": "qunit",
|
|
"test_page": "tests/index.html?hidepassed",
|
|
"disable_watching": true,
|
|
"launch_in_ci": [
|
|
"Chrome"
|
|
],
|
|
"launch_in_dev": [
|
|
"Chrome"
|
|
],
|
|
"on_exit": "[ -e ../../vault-ui-integration-server.pid ] && node ../../scripts/start-vault.js `cat ../../vault-ui-integration-server.pid`; [ -e ../../vault-ui-integration-server.pid ] && rm ../../vault-ui-integration-server.pid",
|
|
|
|
proxies: {
|
|
"/v1": {
|
|
"target": "http://localhost:9200"
|
|
}
|
|
}
|
|
};
|