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
When using the CLion reporter with a project open in the IDE, received and approved files are opened as regular tabs, and an empty diff window is opened for each failed test.
I experience this issue on macOS. I don't know if Windows/Linux are affected.
It seems that the nosplash argument when invoking CLion is the culprit here. As a workaround, you can skip the argument in CLion's startup script (/Users/[username]/Library/Application Support/JetBrains/Toolbox/scripts/clion) by adding this to the start of the for-loop:
if [[ "$o"="nosplash" ]];thencontinuefi
With the workaround applied, ApprovalTests diffs correctly open in the CLion diff viewer.
The text was updated successfully, but these errors were encountered:
When using the CLion reporter with a project open in the IDE, received and approved files are opened as regular tabs, and an empty diff window is opened for each failed test.
I experience this issue on macOS. I don't know if Windows/Linux are affected.
It seems that the
nosplash
argument when invoking CLion is the culprit here. As a workaround, you can skip the argument in CLion's startup script (/Users/[username]/Library/Application Support/JetBrains/Toolbox/scripts/clion
) by adding this to the start of the for-loop:With the workaround applied, ApprovalTests diffs correctly open in the CLion diff viewer.
The text was updated successfully, but these errors were encountered: