mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 09:19:04 -04:00
* [mocha] run tests with mocha script, remove grunt-simple-mocha * [ci] force colored output * [ci] disable color when reading the yarn bin * [dev/build/exec] support tooling log having its own chalk * [dev/mocha] avoid changing the cwd of the process * [dev/mocha] only match files, speed up negative matches * [cli/serve/test] strip ansi control characters from logs * [ci] disable color in all `yarn bin` invocations * [dev/mocha] cleanup old runInBand check * [dev/mocha] enable gloabl leak checks
9 lines
301 B
Bash
Executable file
9 lines
301 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
source "$(dirname $0)/../../src/dev/ci_setup/setup.sh"
|
|
source "$(dirname $0)/../../src/dev/ci_setup/git_setup.sh"
|
|
source "$(dirname $0)/../../src/dev/ci_setup/java_setup.sh"
|
|
|
|
export TEST_ES_FROM=source
|
|
xvfb-run "$(FORCE_COLOR=0 yarn bin)/grunt" jenkins:unit --from=source;
|