Finalizes the list of expected side-effects on the console.
(self)
| 693 | |
| 694 | /// Finalizes the list of expected side-effects on the console. |
| 695 | fn build(self) -> Vec<CapturedOut> { |
| 696 | let mut output = self.output; |
| 697 | output.push(CapturedOut::SetSync(true)); |
| 698 | output.push(CapturedOut::LeaveAlt); |
| 699 | output |
| 700 | } |
| 701 | } |
| 702 | |
| 703 | /// Runs the editor and expects that the resulting text matches `exp_text` and that the |