Skip to content

Commit

Permalink
Merge pull request #30 from Vacxe/fix-isPlatformPopupMatcher
Browse files Browse the repository at this point in the history
Ignore isPlatformPopup line
  • Loading branch information
Unlimity authored Jul 13, 2022
2 parents 47f0a72 + 175e891 commit 5169db4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package io.github.kakaocup.sample

import androidx.test.ext.junit.rules.ActivityScenarioRule
import androidx.test.internal.runner.junit4.AndroidJUnit4ClassRunner
import io.github.kakaocup.kakao.common.matchers.SpinnerPopupMatcher
import io.github.kakaocup.kakao.screen.Screen.Companion.onScreen
import io.github.kakaocup.sample.screen.AutoCompleteActivityScreen
import org.junit.Rule
Expand All @@ -24,7 +25,7 @@ class AutoCompleteTest {

list {
inRoot {
isPlatformPopup()
withMatcher(SpinnerPopupMatcher())
}

isVisible()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class AutoCompleteActivity : AppCompatActivity() {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_auto_complete)

val adapter = ArrayAdapter<String>(
val adapter = ArrayAdapter(
this, R.layout.item_autocomplete, R.id.text,
listOf(
"Title 1", "Title 2", "Title 3", "Title 4", "Title 5",
Expand Down

0 comments on commit 5169db4

Please sign in to comment.