-
-
Notifications
You must be signed in to change notification settings - Fork 84
Converted test recorder for bulk recordings #169
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
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.
I think this is mostly a win but see my two comments
start: {line: 0, character: 6} | ||
end: {line: 0, character: 21} | ||
initialState: | ||
documentContents: "const myVariableValue = \"hello\";\r\n" |
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.
Hmm. So I don't think it's worth re-recording everything, but I believe if you don't use line feeds these will get turned into block output and be a bit nicer to read. At least I think that's what's happening here. Check out the example yamls
- anchor: {line: 1, character: 0} | ||
active: {line: 1, character: 0} | ||
finalState: | ||
documentContents: "\r\nconst myVariableValue = \"hello\";\r\n" |
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.
Does VSCode auto-detect line ending type? If not then this will fail in some cases I believe
No description provided.