Skip to content

Commit 0f6a52d

Browse files
committed
2 parents 5f1d025 + 738c9a4 commit 0f6a52d

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

docs/bs-react-testing-library/intro.mdx

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ Bindings for several testing libraries have been ported to [ReasonML][re].
1515

1616
```bash npm2yarn
1717
npm install --save-dev bs-dom-testing-library
18+
```
19+
20+
```bash npm2yarn
1821
npm install --save-dev bs-react-testing-library
1922
```
2023

docs/dom-testing-library/api-debugging.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ value is `7000`. You will see `...` in the console, when the DOM content is
3232
stripped off, because of the length you have set or due to default size limit.
3333
Here's how you might increase this limit when running tests:
3434

35-
```
35+
```bash npm2yarn
3636
DEBUG_PRINT_LIMIT=10000 npm test
3737
```
3838

@@ -46,7 +46,7 @@ colors, such as in cases where the output is written to a log file for debugging
4646
purposes. You can use the environment variable `COLORS` to explicitly force the
4747
colorization off or on. For example:
4848

49-
```
49+
```bash npm2yarn
5050
COLORS=false npm test
5151
```
5252

docs/svelte-testing-library/setup.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ npm install --save-dev @vitest/ui
8787
how) and run the following command to run the tests.
8888

8989
```bash npm2yarn
90-
npm run test
90+
npm test
9191
```
9292

9393
## Jest
@@ -104,7 +104,7 @@ npm install --save-dev @vitest/ui
104104
{
105105
"scripts": {
106106
"test": "jest src",
107-
"test:watch": "npm run test -- --watch"
107+
"test:watch": "jest src --watch"
108108
}
109109
}
110110
```
@@ -180,7 +180,7 @@ npm install --save-dev @vitest/ui
180180
and run it
181181

182182
```bash npm2yarn
183-
npm run test
183+
npm test
184184
```
185185

186186
### TypeScript

0 commit comments

Comments
 (0)