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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -277,17 +277,17 @@ class CreateReadmeTest {
277
277
278
278
val readmePath =Paths.get("tstData", "qdoc", "createFlow", "README.md")
279
279
val readme =File(readmePath.toUri())
280
-
assertFalse(readme.exists())
280
+
assertThat(readme).doesNotExist()
281
281
282
282
val result = executePuppeteerScript(newReadmeDiffViewerTestScript)
283
-
assertFalse(result.contains("Error: Test Failed"))
283
+
assertThat(result).doesNotContain("Error: Test Failed")
284
284
285
285
if (result.contains("Error: Test Failed")) {
286
286
println("result: $result")
287
287
}
288
288
289
289
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
0 commit comments