-
Notifications
You must be signed in to change notification settings - Fork 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
chore: update mergeScan tests to run mode #6176
chore: update mergeScan tests to run mode #6176
Conversation
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.
A couple of notes and a question.
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.
LGTM. Thanks.
const t = time(' --| '); // t = 2 | ||
// --| | ||
// --| | ||
// --| | ||
// --| | ||
// --| |
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.
👍
const t = time(' -----|'); // acc = []; x = 'b'; acc.concat(x) = ['b']; t = 5 | ||
// -----| acc = []; x = 'c'; acc.concat(x) = ['c'] | ||
// -----| acc = ['b']; x = 'd'; acc.concat(x) = ['b', 'd'] | ||
// -----| acc = ['c']; x = 'e'; acc.concat(x) = ['c', 'e'] | ||
// -----| acc = ['b', 'd']; x = 'f'; acc.concat(x) = ['b', 'd', 'f'] | ||
// -----| acc = ['c', 'e']; x = 'g'; acc.concat(x) = ['c', 'e', 'g'] |
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.
👍
Description:
Updated
mergeScan
tests to use run mode.Related issue (if exists):
None