-
Notifications
You must be signed in to change notification settings - Fork 27.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix "infer pnpm with example" test outside test suite (#43487)
Fixes pnpm w/ example being the only test outside the test suite. Before: ```ts describe('create next app', () => { // ... }) it('should infer pnpm as the package manager with example', () => { ... }) ``` After: ```ts describe('create next app', () => { // ... it('should infer pnpm as the package manager with example', () => { ... }) }) ``` ## Documentation / Examples - [X] Make sure the linting passes by running `pnpm build && pnpm lint`
- Loading branch information
Showing
1 changed file
with
31 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters