1 package com.android.onboarding.bedsteadonboarding.annotations 2 3 /** 4 * Mark that a test is responsible for taking the representative screenshot of the given node. 5 * 6 * @property node the allowed node to execute. 7 * 8 * This implies that the specified node is allowed to be launched (as if it was included in 9 * [TestNodes]). 10 */ 11 annotation class OnboardingNodeScreenshot(val node: TestSingleNode) 12