mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
13 lines
340 B
Bash
Executable file
13 lines
340 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
source .buildkite/scripts/steps/functional/common.sh
|
|
|
|
echo --- OSS Accessibility Tests
|
|
|
|
checks-reporter-with-killswitch "Kibana accessibility tests" \
|
|
node scripts/functional_tests \
|
|
--debug --bail \
|
|
--kibana-install-dir "$KIBANA_BUILD_LOCATION" \
|
|
--config test/accessibility/config.ts
|