Skip to content

Commit 7a38567

Browse files
committed
.
1 parent 3c6520e commit 7a38567

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

website/docs/14.x/docs/start/quick-start.mdx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,21 @@ Open a Terminal in your project's folder and run:
88

99
<PackageManagerTabs
1010
command={{
11-
yarn: 'yarn add -D @testing-library/react-native',
1211
npm: 'npm install -D @testing-library/react-native',
12+
yarn: 'yarn add -D @testing-library/react-native',
13+
pnpm: 'pnpm add -D @testing-library/react-native',
14+
bun: 'bun add -D @testing-library/react-native',
1315
}}
1416
/>
1517

1618
This library has a peer dependency on [Test Renderer](https://github.com/mdjastrzebski/test-renderer). Make sure to install it:
1719

1820
<PackageManagerTabs
1921
command={{
20-
yarn: 'yarn add -D test-renderer',
2122
npm: 'npm install -D test-renderer',
23+
yarn: 'yarn add -D test-renderer',
24+
pnpm: 'pnpm add -D test-renderer',
25+
bun: 'bun add -D test-renderer',
2226
}}
2327
/>
2428

@@ -36,8 +40,10 @@ Install the plugin (assuming you already have `eslint` installed & configured):
3640

3741
<PackageManagerTabs
3842
command={{
39-
yarn: 'yarn add -D eslint-plugin-testing-library',
4043
npm: 'npm install -D eslint-plugin-testing-library',
44+
yarn: 'yarn add -D eslint-plugin-testing-library',
45+
pnpm: 'pnpm add -D eslint-plugin-testing-library',
46+
bun: 'bun add -D eslint-plugin-testing-library',
4147
}}
4248
/>
4349

0 commit comments

Comments
 (0)