alchemist
alchemist copied to clipboard
request: Ability to disable platform tests?
Is there an existing feature request for this?
- [X] I have searched the existing issues.
Command
Allow developers to disable platform tests
Description
Allow developers to disable platform tests
Reasoning
Our golden tests don't have any text, so CI and platform runs generate the same results.
Tried setting platformGoldensConfig to null, still got platform golden files.
Additional context and comments
No response
Have you tried this configuration?
AlchemistConfig.runWithConfig(
config: const AlchemistConfig(
platformGoldensConfig: PlatformGoldensConfig(
enabled: false.
),
),
run: testMain,
)