nx/packages/angular/generators.ts
Colum Ferry 8290969cb7
feat(storybook): remove cypress options for e2e testing (#27850)
- feat(storybook): remove cypress options from configuration generator
- feat(react): remove cypress options from storybook-configuration
- feat(react): remove cypress options from stories generator
- feat(react): remove component-cypress-spec generator
- chore(storybook): restore @nx/cypress dep
- feat(remix): remove cypress options from storybook
- feat(angular): remove cypress options from storybook-configuration
- feat(angular): remove cypress options from stories generator
- feat(angular): remove component-cypress-spec generator
- feat(vue): remove cypress options from stories generator

<!-- Please make sure you have read the submission guidelines before
posting an PR -->
<!--
https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr
-->

<!-- Please make sure that your commit message follows our format -->
<!-- Example: `fix(nx): must begin with lowercase` -->

<!-- If this is a particularly complex change or feature addition, you
can request a dedicated Nx release for this pull request branch. Mention
someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they
will confirm if the PR warrants its own release for testing purposes,
and generate it for you if appropriate. -->

## Current Behavior
<!-- This is the behavior we have today -->
With Storybook Interaction Testing, there's no longer a need to setup
Cypress to specifically test storybook instances


## Expected Behavior
<!-- This is the behavior we should expect with the changes in this PR
-->
Remove cypress options for creating an e2e project specifically for
testing storybook instances.

Use Storybook Interaction Testing instead

## Related Issue(s)
<!-- Please link the issue being fixed so it gets closed when this is
merged. -->

Fixes #
2024-09-24 15:54:58 +01:00

30 lines
1.7 KiB
TypeScript

export * from './src/generators/add-linting/add-linting';
export * from './src/generators/application/application';
export * from './src/generators/component-story/component-story';
export * from './src/generators/component/component';
export * from './src/generators/directive/directive';
export * from './src/generators/federate-module/federate-module';
export * from './src/generators/host/host';
export * from './src/generators/init/init';
export * from './src/generators/library-secondary-entry-point/library-secondary-entry-point';
export * from './src/generators/library/library';
export * from './src/generators/move/move';
export * from './src/generators/ngrx/ngrx';
export * from './src/generators/ngrx-feature-store/ngrx-feature-store';
export * from './src/generators/ngrx-root-store/ngrx-root-store';
export * from './src/generators/pipe/pipe';
export * from './src/generators/remote/remote';
export * from './src/generators/scam-directive/scam-directive';
export * from './src/generators/scam-pipe/scam-pipe';
export * from './src/generators/scam-to-standalone/scam-to-standalone';
export * from './src/generators/scam/scam';
export * from './src/generators/setup-mf/setup-mf';
export * from './src/generators/setup-ssr/setup-ssr';
export * from './src/generators/setup-tailwind/setup-tailwind';
export * from './src/generators/stories/stories';
export * from './src/generators/storybook-configuration/storybook-configuration';
export * from './src/generators/web-worker/web-worker';
export { cypressComponentConfiguration } from './src/generators/cypress-component-configuration/cypress-component-configuration';
export * from './src/generators/component-test/component-test';
export * from './src/utils/test-runners';