where do you store test tags? like I have some tag...
# compose
o
where do you store test tags? like I have some tags here in a class that constructs some composables, and I’ve defined them like this:
Copy code
object TestTags {
    const val eventsListTag = "Events List"
    const val errorPromptTag = "Error Prompt"
    const val emptyPromptTag = "Empty Prompt"
}
how do you do this?
d
Similar to what you have. We use Lyricist for localisation so we pretty much match the structure of our Strings.kt file in TestTags.kt. Both files are nested objects/data classes that match the screen structure of our app
o
Yea but this block is sitting in the same file where the composable is being created, you’re saying you put them all in a separate file ok yea