mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[artifacts testing] Re-enable FTR smoke tests (#132076)
* [artifacts testing] Re-enable FTR smoke tests * --quiet * docker disable chromium sandbox * newline
This commit is contained in:
parent
56dedf3856
commit
179cf309ec
3 changed files with 10 additions and 6 deletions
|
@ -41,9 +41,11 @@ trap "echoKibanaLogs" EXIT
|
|||
|
||||
vagrant provision "$TEST_PACKAGE"
|
||||
|
||||
# export TEST_BROWSER_HEADLESS=1
|
||||
# export TEST_KIBANA_URL="http://elastic:changeme@$KIBANA_IP_ADDRESS:5601"
|
||||
# export TEST_ES_URL=http://elastic:changeme@192.168.56.1:9200
|
||||
export TEST_BROWSER_HEADLESS=1
|
||||
export TEST_KIBANA_URL="http://elastic:changeme@$KIBANA_IP_ADDRESS:5601"
|
||||
export TEST_ES_URL="http://elastic:changeme@192.168.56.1:9200"
|
||||
|
||||
# cd x-pack
|
||||
# node scripts/functional_test_runner.js --include-tag=smoke
|
||||
cd x-pack
|
||||
|
||||
echo "--- FTR - Reporting"
|
||||
node scripts/functional_test_runner.js --config test/functional/apps/visualize/config.ts --include-tag=smoke --quiet
|
||||
|
|
|
@ -24,3 +24,4 @@
|
|||
ELASTICSEARCH_HOSTS: http://192.168.56.1:9200
|
||||
ELASTICSEARCH_USERNAME: '{{ elasticsearch_username }}'
|
||||
ELASTICSEARCH_PASSWORD: '{{ elasticsearch_password }}'
|
||||
XPACK_REPORTING_CAPTURE_BROWSER_CHROMIUM_DISABLESANDBOX: 'true'
|
||||
|
|
|
@ -25,7 +25,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
|
|||
'visEditor',
|
||||
]);
|
||||
|
||||
describe('Visualize Reporting Screenshots', () => {
|
||||
describe('Visualize Reporting Screenshots', function () {
|
||||
this.tags(['smoke']);
|
||||
before('initialize tests', async () => {
|
||||
log.debug('ReportingPage:initTests');
|
||||
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/reporting/ecommerce');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue