From f65281539bfad6efeb33f44ae24be5e452ccb0b4 Mon Sep 17 00:00:00 2001 From: takahirom Date: Thu, 18 Jul 2024 12:16:40 +0900 Subject: [PATCH] Fix document --- README.md | 2 +- docs/topics/preview_support.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c04b5786..0745d91f 100644 --- a/README.md +++ b/README.md @@ -980,7 +980,7 @@ roborazzi { enable = true // The package names to scan for Composable Previews. packages = listOf("com.example") - // The fully qualified class name of the custom test class that implements [com.github.takahirom.roborazzi.RobolectricPreviewTest]. + // The fully qualified class name of the custom test class that implements [com.github.takahirom.roborazzi.ComposePreviewTester]. testerQualifiedClassName = "com.example.MyCustomComposePreviewTester" // robolectricConfig will be passed to Robolectric's @Config annotation in the generated test class. // See https://robolectric.org/configuring/ for more information. diff --git a/docs/topics/preview_support.md b/docs/topics/preview_support.md index 23188a7d..14d33b4c 100644 --- a/docs/topics/preview_support.md +++ b/docs/topics/preview_support.md @@ -30,7 +30,7 @@ roborazzi { enable = true // The package names to scan for Composable Previews. packages = listOf("com.example") - // The fully qualified class name of the custom test class that implements [com.github.takahirom.roborazzi.RobolectricPreviewTest]. + // The fully qualified class name of the custom test class that implements [com.github.takahirom.roborazzi.ComposePreviewTester]. testerQualifiedClassName = "com.example.MyCustomComposePreviewTester" // robolectricConfig will be passed to Robolectric's @Config annotation in the generated test class. // See https://robolectric.org/configuring/ for more information.