Skip to content

Commit

Permalink
TEST commit: rerun flaky test suite 30 times
Browse files Browse the repository at this point in the history
  • Loading branch information
alisonelizabeth committed Feb 27, 2020
1 parent dc2dcd8 commit 44705fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/scripts/jenkins_xpack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if [[ -z "$CODE_COVERAGE" ]] ; then

echo " -> Running jest tests"
cd "$XPACK_DIR"
checks-reporter-with-killswitch "X-Pack Jest" node scripts/jest --ci --verbose
checks-reporter-with-killswitch "X-Pack Jest" for i in {1..30}; do node scripts/jest --ci --verbose; done;
echo ""
echo ""

Expand Down
2 changes: 1 addition & 1 deletion x-pack/dev-tools/jest/create_jest_config.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export function createJestConfig({ kibanaDirectory, xPackKibanaDirectory }) {
`<rootDir>/dev-tools/jest/setup/setup_test.js`,
`${kibanaDirectory}/src/dev/jest/setup/mocks.js`,
],
testMatch: ['**/*.test.{js,ts,tsx}'],
testMatch: ['**/remote_clusters_edit.test.{js,ts,tsx}'],
transform: {
'^.+\\.(js|tsx?)$': `${kibanaDirectory}/src/dev/jest/babel_transform.js`,
'^.+\\.html?$': 'jest-raw-loader',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ import { REMOTE_CLUSTER_EDIT, REMOTE_CLUSTER_EDIT_NAME } from './helpers/constan
const { setup } = pageHelpers.remoteClustersEdit;
const { setup: setupRemoteClustersAdd } = pageHelpers.remoteClustersAdd;

// FLAKY: https://github.com/elastic/kibana/issues/57762
// FLAKY: https://github.com/elastic/kibana/issues/57997
// FLAKY: https://github.com/elastic/kibana/issues/57998
describe.skip('Edit Remote cluster', () => {
describe('Edit Remote cluster', () => {
let server;
let httpRequestsMockHelpers;
let component;
Expand Down

0 comments on commit 44705fa

Please sign in to comment.