[MM-50011] Disable popping the dialog box for uncaught exceptions (#2519)

This commit is contained in:
Devin Binnie
2023-01-27 09:05:32 -05:00
committed by GitHub
parent 59c98036ee
commit cf6611cc87
3 changed files with 7 additions and 3 deletions

View File

@@ -60,7 +60,7 @@ async function toggleDarkMode() {
robot.keyTap('enter');
robot.keyTap('v');
robot.keyTap('t');
await asyncSleep(500); // Add a sleep because sometimes the second 't' doesn't fire
await asyncSleep(500); // Add a sleep because sometimes the second 't' doesn't fire
robot.keyTap('t'); // Click on "Toggle Dark Mode" menu item
robot.keyTap('enter');
}