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
Copy file name to clipboardExpand all lines: ui-tests-starter/tst-243+/software/aws/toolkits/jetbrains/uitests/docTests/createReadmeTests/CreateReadmeTest.kt
+2-5Lines changed: 2 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -280,11 +280,8 @@ class CreateReadmeTest {
280
280
assertThat(readme).doesNotExist()
281
281
282
282
val result = executePuppeteerScript(newReadmeDiffViewerTestScript)
283
-
assertThat(result).doesNotContain("Error: Test Failed")
284
-
285
-
if (result.contains("Error: Test Failed")) {
286
-
println("result: $result")
287
-
}
283
+
assertThat(result)
284
+
.doesNotContain("Error: Test Failed")
288
285
289
286
val panel =this.ui.x("//div[contains(@class, 'SimpleDiffPanel')]")
Copy file name to clipboardExpand all lines: ui-tests-starter/tst-243+/software/aws/toolkits/jetbrains/uitests/docTests/createReadmeTests/CreateReadmeWorkspacesTest.kt
+18-19Lines changed: 18 additions & 19 deletions
Original file line number
Diff line number
Diff line change
@@ -89,14 +89,15 @@ class CreateReadmeWorkspacesTest {
89
89
assertThat(readme).doesNotExist()
90
90
91
91
val result = executePuppeteerScript(acceptReadmeTestScript)
92
-
assertThat(result).doesNotContain("Error: Test Failed")
93
-
if (result.contains("Error: Test Failed")) {
94
-
println("result: $result")
95
-
}
92
+
assertThat(result)
93
+
.doesNotContain("Error: Test Failed")
96
94
97
95
val newReadmePath =Paths.get("tstData", "qdoc", "createFlow", "README.md")
0 commit comments