Skip to content

Commit f029787

Browse files
Fix capitalization (#1289)
1 parent be2e8b3 commit f029787

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/react-testing-library/setup.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ make your test util file accessible without using relative paths.
3131
The example below sets up data providers using the [`wrapper`](api.mdx#wrapper)
3232
option to `render`.
3333

34-
<Tabs groupId="test-utils" defaultValue="jsx" values={[ {label: 'Javascript',
35-
value: 'jsx'}, {label: 'Typescript', value: 'tsx'}, ]}>
34+
<Tabs groupId="test-utils" defaultValue="jsx" values={[ {label: 'JavaScript',
35+
value: 'jsx'}, {label: 'TypeScript', value: 'tsx'}, ]}>
3636

3737
<TabItem value="jsx">
3838

@@ -250,8 +250,8 @@ passing a [`queries`](api.mdx#render-options) option.
250250
If you want to add custom queries globally, you can do this by defining your customized
251251
`render`, `screen` and `within` methods:
252252

253-
<Tabs groupId="test-utils" defaultValue="jsx" values={[ {label: 'Javascript',
254-
value: 'jsx'}, {label: 'Typescript', value: 'tsx'}, ]}>
253+
<Tabs groupId="test-utils" defaultValue="jsx" values={[ {label: 'JavaScript',
254+
value: 'jsx'}, {label: 'TypeScript', value: 'tsx'}, ]}>
255255

256256
<TabItem value="jsx">
257257

docs/svelte-testing-library/setup.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ You can take a look at the [`vitest-svelte-kit` configuration docs](https://gith
171171
npm run test
172172
```
173173

174-
### Typescript
174+
### TypeScript
175175

176-
To use Typescript with Jest, you'll need to install and configure `svelte-preprocess` and
176+
To use TypeScript with Jest, you'll need to install and configure `svelte-preprocess` and
177177
`ts-jest`. For full instructions, see the
178178
[`svelte-jester`](https://github.com/mihar-22/svelte-jester#typescript) docs.
179179

docs/webdriverio-testing-library/intro.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ it('lets you configure queries', async () => {
162162
})
163163
```
164164

165-
## Typescript
165+
## TypeScript
166166

167167
This library comes with full typescript definitions. To use the commands added
168168
by [`setupBrowser`](#setupbrowser) the `Browser` and `Element` interfaces in the

0 commit comments

Comments
 (0)