-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[wip]: correct set tsconfig for mocha test under plugins/code/server/__test__ #34754
Conversation
currently the However, I was wondering if we should just move all the test under |
bb09101
to
b04fa24
Compare
💚 Build Succeeded |
💚 Build Succeeded |
💚 Build Succeeded |
close this for now in favor of jest integration test in the feature |
@@ -38,6 +38,9 @@ export const PROJECTS = [ | |||
...glob | |||
.sync('test/plugin_functional/plugins/*/tsconfig.json', { cwd: REPO_ROOT }) | |||
.map(path => new Project(resolve(REPO_ROOT, path))), | |||
...glob | |||
.sync('x-pack/plugins/**/__tests__/tsconfig.json', { cwd: REPO_ROOT }) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This glob is too expansive, it covers way too many locations, please pick something a little more static (lets stick to a single *
max)
No description provided.