Skip to content

Commit e1048b2

Browse files
TASK-1811405: [T] add missing assertions in test_case_processing_embedded_data (#54)
1 parent 56bb807 commit e1048b2

File tree

1 file changed

+4
-1
lines changed
  • samples/android-cmp-app/src/androidInstrumentedTest/kotlin/com/pega/constellation/sdk/kmp/samples/androidcmpapp

1 file changed

+4
-1
lines changed

samples/android-cmp-app/src/androidInstrumentedTest/kotlin/com/pega/constellation/sdk/kmp/samples/androidcmpapp/CaseProcessingTest.kt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,12 @@ class CaseProcessingTest : ComposeTest() {
9595
onNodeWithText("Client name").performTextInput("Lukasz")
9696
onNode(hasText("Brand") and hasSetTextAction()).performTextInput("Audi")
9797
onNode(hasText("Model") and hasSetTextAction()).performTextInput("A5")
98+
onNodeWithText("Row 1").performClick() // remove focus to propagate data
9899

99100
// verify data propagation
100-
// TODO TASK-1786094
101+
waitForNodes("Lukasz", 2)
102+
waitForNodes("Audi", 2)
103+
waitForNodes("A5", 2)
101104

102105
// go to next step
103106
onNodeWithText("Next").performClick()

0 commit comments

Comments
 (0)