Skip to content

Commit cc71c64

Browse files
authored
Merge branch 'main' into feat/renderHooks
2 parents 43157d4 + 2c451b3 commit cc71c64

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

.all-contributorsrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1307,6 +1307,16 @@
13071307
"code",
13081308
"bug"
13091309
]
1310+
},
1311+
{
1312+
"login": "Nokel81",
1313+
"name": "Sebastian Malton",
1314+
"avatar_url": "https://avatars.githubusercontent.com/u/8225332?v=4",
1315+
"profile": "https://github.com/Nokel81",
1316+
"contributions": [
1317+
"bug",
1318+
"code"
1319+
]
13101320
}
13111321
],
13121322
"contributorsPerLine": 7,

.github/workflows/validate.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: validate
22
on:
33
push:
44
branches:
5-
- '+([0-9])?(.{+([0-9]),x}).x'
5+
# Match SemVer major release branches
6+
# e.g. "12.x" or "8.x"
7+
- '[0-9]+.x'
68
- 'main'
79
- 'next'
810
- 'next-major'
@@ -61,8 +63,7 @@ jobs:
6163
runs-on: ubuntu-latest
6264
if:
6365
${{ github.repository == 'testing-library/react-testing-library' &&
64-
contains('refs/heads/main,refs/heads/beta,refs/heads/next,refs/heads/alpha',
65-
github.ref) && github.event_name == 'push' }}
66+
github.event_name == 'push' }}
6667
steps:
6768
- name: 🛑 Cancel Previous Runs
6869
uses: styfle/cancel-workflow-action@0.9.0

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,7 @@ Thanks goes to these people ([emoji key][emojis]):
615615
<td align="center"><a href="https://github.com/ImADrafter"><img src="https://avatars.githubusercontent.com/u/44379989?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Marcos Gómez</b></sub></a><br /><a href="https://github.com/testing-library/react-testing-library/commits?author=ImADrafter" title="Documentation">📖</a></td>
616616
<td align="center"><a href="https://www.akashshyam.online/"><img src="https://avatars.githubusercontent.com/u/56759828?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Akash Shyam</b></sub></a><br /><a href="https://github.com/testing-library/react-testing-library/issues?q=author%3Aakashshyamdev" title="Bug reports">🐛</a></td>
617617
<td align="center"><a href="https://hen.ne.ke"><img src="https://avatars.githubusercontent.com/u/4312191?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Fabian Meumertzheim</b></sub></a><br /><a href="https://github.com/testing-library/react-testing-library/commits?author=fmeum" title="Code">💻</a> <a href="https://github.com/testing-library/react-testing-library/issues?q=author%3Afmeum" title="Bug reports">🐛</a></td>
618+
<td align="center"><a href="https://github.com/Nokel81"><img src="https://avatars.githubusercontent.com/u/8225332?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Sebastian Malton</b></sub></a><br /><a href="https://github.com/testing-library/react-testing-library/issues?q=author%3ANokel81" title="Bug reports">🐛</a> <a href="https://github.com/testing-library/react-testing-library/commits?author=Nokel81" title="Code">💻</a></td>
618619
</tr>
619620
</table>
620621

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"dependencies": {
4848
"@babel/runtime": "^7.12.5",
4949
"@testing-library/dom": "^8.5.0",
50-
"@types/react-dom": "*"
50+
"@types/react-dom": "^18.0.0"
5151
},
5252
"devDependencies": {
5353
"@testing-library/jest-dom": "^5.11.6",

types/test.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ export function wrappedRenderC(
129129
options?: pure.RenderOptions,
130130
) {
131131
interface AppWrapperProps {
132+
children?: React.ReactNode
132133
userProviderProps?: {user: string}
133134
children: React.ReactNode
134135
}

0 commit comments

Comments
 (0)