You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here's a table of currently skipped tests. The first group are individual tests and the second group are describe.skip which skip some number of tests.
I ran this command to find the skipped tests and put it in markdown format (once for it.skip and once for describe.skip and then cd into x-pack and run for both it and describe again);
I am currently working on visualize tests as one PR so I will see if I can re-enable any of those. At least three should be as they are not skipped in 6.3.
Here's a table of currently skipped tests. The first group are individual tests and the second group are
describe.skip
which skip some number of tests.I ran this command to find the skipped tests and put it in markdown format (once for
it.skip
and once fordescribe.skip
and then cd into x-pack and run for both it and describe again);grep -rn describe.skip test/functional/apps/* | grep -v "//" | sed 's#test/functional/apps/\(.*\.js\):\([0-9]*\):\(.*\),.*#|[\1](https://github.com/elastic/kibana/blob/master/test/functional/apps/\1\#L\2)|\3 |#'
The text was updated successfully, but these errors were encountered: