mirror of
https://github.com/elastic/kibana.git
synced 2025-04-22 17:04:01 -04:00
* chore(NA): remove mocha junit ci integrations * chore(NA): remove mocha script from xpack * chore(NA): single rule exclusion on eslint config for mocha * chore(NA): remove unused custom mocha integration code from kbn/test * chore(NA): rewording packages readme * docs(NA): remoe mocha mention from development-unit-tests # Conflicts: # docs/developer/contributing/development-unit-tests.asciidoc # test/scripts/jenkins_unit.sh
27 lines
No EOL
759 B
Bash
Executable file
27 lines
No EOL
759 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
source test/scripts/jenkins_test_setup.sh
|
|
|
|
# Lint
|
|
./test/scripts/lint/eslint.sh
|
|
./test/scripts/lint/stylelint.sh
|
|
|
|
# Test
|
|
./test/scripts/test/jest_integration.sh
|
|
./test/scripts/test/jest_unit.sh
|
|
./test/scripts/test/api_integration.sh
|
|
|
|
# Check
|
|
./test/scripts/checks/telemetry.sh
|
|
./test/scripts/checks/ts_projects.sh
|
|
./test/scripts/checks/jest_configs.sh
|
|
./test/scripts/checks/doc_api_changes.sh
|
|
./test/scripts/checks/type_check.sh
|
|
./test/scripts/checks/bundle_limits.sh
|
|
./test/scripts/checks/i18n.sh
|
|
./test/scripts/checks/file_casing.sh
|
|
./test/scripts/checks/licenses.sh
|
|
./test/scripts/checks/plugins_with_circular_deps.sh
|
|
./test/scripts/checks/verify_notice.sh
|
|
./test/scripts/checks/test_projects.sh
|
|
./test/scripts/checks/test_hardening.sh |