Skip to content

Support custom spec file suffix#1077

Merged
kamilmysliwiec merged 17 commits into
nestjs:masterfrom
garritfra:feature/custom-spec-suffix
Jul 8, 2022
Merged

Support custom spec file suffix#1077
kamilmysliwiec merged 17 commits into
nestjs:masterfrom
garritfra:feature/custom-spec-suffix

Conversation

@garritfra

@garritfra garritfra commented Jun 17, 2022

Copy link
Copy Markdown
Contributor

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
Copy Markdown
Member

Looks good so far!

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

@garritfra garritfra Jun 17, 2022

Copy link
Copy Markdown
Contributor Author

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 force-pushed the feature/custom-spec-suffix branch from d9e80d2 to 3ab21dc Compare June 19, 2022 10:40
@garritfra garritfra marked this pull request as ready for review June 19, 2022 12:53
Comment thread src/lib/class/class.schema.d.ts
Comment thread src/lib/controller/controller.schema.d.ts
Comment thread src/lib/filter/filter.schema.d.ts
Comment thread src/lib/gateway/gateway.schema.d.ts
Comment thread src/lib/guard/guard.schema.d.ts
Comment thread src/lib/interceptor/interceptor.schema.d.ts
Comment thread src/lib/middleware/middleware.schema.d.ts
Comment thread src/lib/pipe/pipe.schema.d.ts
Comment thread src/lib/provider/provider.schema.d.ts
Comment thread src/lib/resolver/resolver.schema.d.ts
Comment thread src/lib/resource/resource.schema.d.ts
Comment thread src/lib/service/service.schema.d.ts
Comment thread src/lib/sub-app/sub-app.schema.d.ts
Co-authored-by: Micael Levi L. Cavalcante <mllc@icomp.ufam.edu.br>
@garritfra garritfra requested a review from micalevisk June 26, 2022 14:26
@kamilmysliwiec kamilmysliwiec merged commit f353c6c into nestjs:master Jul 8, 2022
@kamilmysliwiec

Copy link
Copy Markdown
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