Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support custom spec file suffix #1077

Merged
merged 17 commits into from Jul 8, 2022

Conversation

garritfra
Copy link
Contributor

@garritfra garritfra commented Jun 17, 2022

Closes #143.
Groundwork for nestjs/nest-cli#1683.

PR Checklist

Please check if your PR fulfills the following requirements:

PR Type

What kind of change does this PR introduce?

  • Bugfix
  • Feature
  • Code style update (formatting, local variables)
  • Refactoring (no functional changes, no api changes)
  • Build related changes
  • CI related changes
  • Other... Please describe:

What is the current behavior?

The file suffix of unit test files is always .spec.ts.

What is the new behavior?

The suffix can now be customized. E.g.: .spec.ts, .test.ts, .foo.ts.
This serves as preparation for the issue linked above.

Does this PR introduce a breaking change?

  • Yes
  • No

Other information

I'm opening this PR as a draft and gradually implement this behavior for all the schematics. I'd love to get feedback along the way though!

@kamilmysliwiec
Copy link
Member

Looks good so far!

? noop()
: filter((path) => {
const specNamingConvention = options.specFileSuffix || 'spec';
const languageExtension = options.language || 'ts';
Copy link
Contributor Author

@garritfra garritfra Jun 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wasn't sure if using a static file extension may result in a bug when using JS. Let me know if this is fine, and I'll revert this.

@garritfra garritfra marked this pull request as ready for review June 19, 2022 12:53
Co-authored-by: Micael Levi L. Cavalcante <mllc@icomp.ufam.edu.br>
@kamilmysliwiec kamilmysliwiec merged commit f353c6c into nestjs:master Jul 8, 2022
@kamilmysliwiec
Copy link
Member

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Allow switching the suffix for test files to .test.ts instead of .spec.ts
4 participants