From 913be582498ad2d817756b4a98a55164a0d1d88a Mon Sep 17 00:00:00 2001 From: Gabriel Zayas Date: Tue, 27 Jun 2023 19:47:19 +0900 Subject: [PATCH] Update assertion alert text --- app/views/magic_test/_context_menu.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/magic_test/_context_menu.html.erb b/app/views/magic_test/_context_menu.html.erb index 40370ca..9212809 100644 --- a/app/views/magic_test/_context_menu.html.erb +++ b/app/views/magic_test/_context_menu.html.erb @@ -58,7 +58,7 @@ var testingOutput = JSON.parse(sessionStorage.getItem("testingOutput")); var target = ""; var options = ""; - var accept = "You selected:\n\r" + text + "\n\rOk: Type `flush` into debugger console to add to test.\nCancel: To select new text." + var accept = "You selected:\n\r" + text + "\n\rOk: Type `flush` into debugger console to add to test.\nCancel: Do not register selected text." if (window.confirm(accept)) { testingOutput.push({action: action, target: target, options: options}); sessionStorage.setItem("testingOutput", JSON.stringify(testingOutput));