mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
14 lines
374 B
Bash
Executable file
14 lines
374 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
source .buildkite/scripts/steps/functional/common.sh
|
|
|
|
echo --- OSS Firefox Smoke Tests
|
|
|
|
checks-reporter-with-killswitch "Firefox smoke test" \
|
|
node scripts/functional_tests \
|
|
--bail --debug \
|
|
--kibana-install-dir "$KIBANA_BUILD_LOCATION" \
|
|
--include-tag "includeFirefox" \
|
|
--config test/functional/config.firefox.js
|