Skip to content

Commit 35d6a71

Browse files
committed
missed a yarn install in tests
1 parent 2774190 commit 35d6a71

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/tools/packager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function removeCmd(pkg: string, options: PackageOptions = packageInstallOptions)
135135
*
136136
* Returns a string command to run a generic install with a packager of your choice (or auto-detects).
137137
*
138-
* For example, `yarn install` or `npm install`.
138+
* For example, `pnpm install` or `yarn install`.
139139
*
140140
*/
141141
function installCmd(options: PackageRunOptions) {

src/tools/react-native.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ npm run build:ios:prod
4848

4949
const results = filesystem.read(readmePath)
5050
const expectedResults = `
51-
yarn install
52-
yarn start
53-
yarn build:ios:sim
54-
yarn build:ios:device
55-
yarn build:ios:prod
51+
pnpm install
52+
pnpm run start
53+
pnpm run build:ios:sim
54+
pnpm run build:ios:device
55+
pnpm run build:ios:prod
5656
`
5757

5858
expect(results).toBe(expectedResults)

0 commit comments

Comments
 (0)