alchemist icon indicating copy to clipboard operation
alchemist copied to clipboard

request: Ability to disable platform tests?

Open mgenware opened this issue 1 year ago • 1 comments

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

mgenware avatar Nov 16 '24 13:11 mgenware

Have you tried this configuration?

AlchemistConfig.runWithConfig(
    config: const AlchemistConfig(
      platformGoldensConfig: PlatformGoldensConfig(
        enabled: false.
      ),
    ),
    run: testMain,
  )

gasaichandesu avatar Dec 23 '24 10:12 gasaichandesu