[7.2] [jest] don't be crazy, run with caching enabled (#38332) (#38350)

This commit is contained in:
Spencer 2019-06-06 23:26:12 -07:00 committed by GitHub
parent 81a144c4c3
commit 357af351d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -33,7 +33,7 @@ module.exports = function (grunt) {
function runJest(jestScript) {
const serverCmd = {
cmd: 'node',
args: [jestScript, '--no-cache', '--ci'],
args: [jestScript, '--ci'],
opts: { stdio: 'inherit' }
};

View file

@ -23,12 +23,12 @@ echo ""
echo " -> Running jest tests"
cd "$XPACK_DIR"
checks-reporter-with-killswitch "X-Pack Jest" node scripts/jest --ci --no-cache --verbose
checks-reporter-with-killswitch "X-Pack Jest" node scripts/jest --ci --verbose
echo ""
echo ""
# echo " -> Running jest integration tests"
# cd "$XPACK_DIR"
# node scripts/jest_integration --ci --no-cache --verbose
# node scripts/jest_integration --ci --verbose
# echo ""
# echo ""