Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…rary-docs into tabs
  • Loading branch information
nickserv committed Nov 3, 2023
2 parents 5f1d025 + 738c9a4 commit 0f6a52d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions docs/bs-react-testing-library/intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ Bindings for several testing libraries have been ported to [ReasonML][re].

```bash npm2yarn
npm install --save-dev bs-dom-testing-library
```

```bash npm2yarn
npm install --save-dev bs-react-testing-library
```

Expand Down
4 changes: 2 additions & 2 deletions docs/dom-testing-library/api-debugging.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ value is `7000`. You will see `...` in the console, when the DOM content is
stripped off, because of the length you have set or due to default size limit.
Here's how you might increase this limit when running tests:

```
```bash npm2yarn
DEBUG_PRINT_LIMIT=10000 npm test
```

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

```
```bash npm2yarn
COLORS=false npm test
```

Expand Down
6 changes: 3 additions & 3 deletions docs/svelte-testing-library/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ npm install --save-dev @vitest/ui
how) and run the following command to run the tests.

```bash npm2yarn
npm run test
npm test
```

## Jest
Expand All @@ -104,7 +104,7 @@ npm install --save-dev @vitest/ui
{
"scripts": {
"test": "jest src",
"test:watch": "npm run test -- --watch"
"test:watch": "jest src --watch"
}
}
```
Expand Down Expand Up @@ -180,7 +180,7 @@ npm install --save-dev @vitest/ui
and run it

```bash npm2yarn
npm run test
npm test
```

### TypeScript
Expand Down

0 comments on commit 0f6a52d

Please sign in to comment.