-
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
Add node scripts/yarn_deduplicate #142531
Conversation
I looked into adding autocommits but it's messy, workflow would look something like:
|
Pinging @elastic/kibana-operations (Team:Operations) |
…ntegration/test_suites/task_manager/task_management·ts - task_manager scheduling and running tasks should disable and reenable task and not run it when runSoon = false (elastic#142749) * Unskipping test * Adding some console logs * Comparing strings * Setting date beforehand * Comparing against disabled task * Reverting unnecessary changes * Cleanup Co-authored-by: Kibana Machine <[email protected]>
💚 Build Succeeded
Metrics [docs]Page load bundle
History
To update your PR or re-run it, just comment with: |
@@ -709,7 +709,7 @@ export default function ({ getService }: FtrProviderContext) { | |||
const task = await currentTask(scheduledTask.id); | |||
|
|||
expect(task.enabled).to.eql(true); | |||
expect(Date.parse(task.scheduledAt)).to.eql(Date.parse(scheduledTask.scheduledAt)); | |||
expect(Date.parse(task.scheduledAt)).to.eql(Date.parse(disabledTask.scheduledAt)); |
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.
ignore this, sorry about the ping. looks like I messed up the merge
Adds a wrapper around
yarn-deduplicate
, excluding to-be-triaged node_modules that break CI. Can be run withnode scripts/yarn_deduplicate
and is included in the bootstrap check on CI.Closes #125712