Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6b789ff

Browse files
committedJan 14, 2023
Initial commit
Just scaffolding the repo.
0 parents  commit 6b789ff

31 files changed

+1171
-0
lines changed
 

‎.all-contributorsrc

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"projectName": "web-testing-library",
3+
"projectOwner": "testing-library",
4+
"repoType": "github",
5+
"files": [
6+
"README.md"
7+
],
8+
"imageSize": 100,
9+
"commit": false,
10+
"contributorsPerLine": 7,
11+
"skipCi": false,
12+
"contributors": [
13+
{
14+
"login": "AugustinLF",
15+
"name": "Augustin Le Fèvre",
16+
"avatar_url": "https://avatars.githubusercontent.com/u/5271169?v=4",
17+
"profile": "https://augustinlf.com/",
18+
"contributions": [
19+
"ideas"
20+
]
21+
},
22+
{
23+
"login": "nickmccurdy",
24+
"name": "Nick McCurdy",
25+
"avatar_url": "https://avatars.githubusercontent.com/u/927220?v=4",
26+
"profile": "https://nickmccurdy.com/",
27+
"contributions": [
28+
"ideas"
29+
]
30+
},
31+
{
32+
"login": "JacobMGEvans",
33+
"name": "Jacob M-G Evans",
34+
"avatar_url": "https://avatars.githubusercontent.com/u/27247160?v=4",
35+
"profile": "https://twitch.tv/jacobmgevans",
36+
"contributions": [
37+
"ideas"
38+
]
39+
},
40+
{
41+
"login": "eps1lon",
42+
"name": "Sebastian Silbermann",
43+
"avatar_url": "https://avatars.githubusercontent.com/u/12292047?v=4",
44+
"profile": "https://solverfox.dev/",
45+
"contributions": [
46+
"code",
47+
"ideas"
48+
]
49+
}
50+
],
51+
"repoHost": "https://github.com",
52+
"commitConvention": "angular"
53+
}

‎.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

‎.github/ISSUE_TEMPLATE.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
<!--
2+
Thanks for your interest in the project. I appreciate bugs filed and PRs submitted!
3+
Please make sure that you are familiar with and follow the Code of Conduct for
4+
this project (found in the CODE_OF_CONDUCT.md file).
5+
6+
Please fill out this template with all the relevant information so we can
7+
understand what's going on and fix the issue.
8+
9+
I'll probably ask you to submit the fix (after giving some direction). If you've
10+
never done that before, that's great! Check this free short video tutorial to
11+
learn how: https://kcd.im/pull-request
12+
13+
14+
If this is an issue with the documentation, please file an issue in the docs repo:
15+
https://github.com/testing-library/testing-library-docs
16+
17+
-->
18+
19+
- `@testing-library/web` version:
20+
- Testing Framework and version:
21+
<!-- are you using jest, mocha, puppeteer, ava? And what version? -->
22+
- Environment:
23+
<!--
24+
If you're testing in JSDOM (the default with jest), what version?
25+
If you're testing in a browser, which one and what version?
26+
If you're testing in another runtime (e.g. Node.js, Deno, Cloudflare workers), which one and what version?
27+
-->
28+
29+
<!--
30+
Keep in mind that if you're using a version of node we don't support that
31+
could also be an issue. Check our package.json "engines" file for the
32+
supported version.
33+
-->
34+
35+
Relevant code or config
36+
37+
```js
38+
39+
```
40+
41+
What you did:
42+
43+
What happened:
44+
45+
<!-- Please provide the full error message/screenshots/anything -->
46+
47+
Reproduction repository:
48+
https://github.com/testing-library/web-testing-library-template
49+
50+
<!--
51+
If possible, please create a repository that reproduces the issue with the
52+
minimal amount of code possible.
53+
-->
54+
55+
Problem description:
56+
57+
Suggested solution:

‎.github/ISSUE_TEMPLATE/Bug_Report.md

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
---
2+
name: 🐛 Bug Report
3+
about: Bugs, missing documentation, or unexpected behavior 🤔.
4+
---
5+
6+
<!--
7+
8+
* Please fill out this template with all the relevant information so we can
9+
understand what's going on and fix the issue. We appreciate bugs filed and PRs
10+
submitted!
11+
12+
* Please make sure that you are familiar with and follow the Code of Conduct for
13+
this project (found in the CODE_OF_CONDUCT.md file).
14+
15+
We'll probably ask you to submit the fix (after giving some direction). If
16+
you've never done that before, that's great! Check this free short video
17+
tutorial to learn how: https://kcd.im/pull-request
18+
19+
If this is an issue with the documentation, please file an issue in the docs repo:
20+
https://github.com/testing-library/testing-library-docs
21+
-->
22+
23+
- `@testing-library/web` version:
24+
- Testing Framework and version:
25+
<!-- are you using jest, mocha, puppeteer, ava? And what version? -->
26+
- Environment:
27+
<!--
28+
If you're testing in JSDOM (the default with jest), what version?
29+
If you're testing in a browser, which one and what version?
30+
If you're testing in another runtime (e.g. Node.js, Deno, Cloudflare workers), which one and what version?
31+
-->
32+
33+
<!--
34+
Keep in mind that if you're using a version of node we don't support that
35+
could also be an issue. Check our package.json "engines" file for the
36+
supported version.
37+
-->
38+
39+
### Relevant code or config:
40+
41+
```js
42+
var your => (code) => here;
43+
```
44+
45+
### What you did:
46+
47+
<!-- What you were doing -->
48+
49+
### What happened:
50+
51+
<!-- Please provide the full error message/screenshots/anything -->
52+
53+
### Reproduction:
54+
55+
<!--
56+
If possible, please create a repository that reproduces the issue with the
57+
minimal amount of code possible.
58+
59+
Repository template: https://github.com/testing-library/web-testing-library-template
60+
61+
Or if you can, try to reproduce the issue in a Codesandbox. You can fork the one
62+
here: https://codesandbox.io/s/5z6x4r7n0p
63+
-->
64+
65+
### Problem description:
66+
67+
<!-- Please describe why the current behavior is a problem -->
68+
69+
### Suggested solution:
70+
71+
<!--
72+
It's ok if you don't have a suggested solution, but it really helps if you could
73+
do a little digging to come up with some suggestion of how to improve things.
74+
-->
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
name: 💡 Feature Request
3+
about: I have a suggestion (and might want to implement myself 🙂)!
4+
---
5+
6+
<!--
7+
8+
Vote on feature requests by adding a 👍. This helps maintainers prioritize what
9+
to work on.
10+
11+
* Please fill out this template with all the relevant information so we can
12+
understand what's going on and fix the issue. We appreciate bugs filed and PRs
13+
submitted!
14+
15+
* Please make sure that you are familiar with and follow the Code of Conduct for
16+
this project (found in the CODE_OF_CONDUCT.md file).
17+
18+
It'd be great if after the discussion you're the one who submits the PR that
19+
implements this feature. If you've never done that before, that's great! Check
20+
this free short video tutorial to learn how: https://kcd.im/pull-request
21+
22+
23+
If this is an issue with the documentation, please file an issue in the docs repo:
24+
https://github.com/testing-library/testing-library-docs
25+
-->
26+
27+
### Describe the feature you'd like:
28+
29+
<!--
30+
A clear and concise description of what you want to happen. Add any considered
31+
drawbacks.
32+
-->
33+
34+
### Suggested implementation:
35+
36+
<!-- Helpful but optional 😀 -->
37+
38+
### Describe alternatives you've considered:
39+
40+
<!--
41+
A clear and concise description of any alternative solutions or features you've
42+
considered.
43+
-->
44+
45+
### Teachability, Documentation, Adoption, Migration Strategy:
46+
47+
<!--
48+
If you can, explain how users will be able to use this and possibly write out a
49+
version of the docs.
50+
-->

‎.github/ISSUE_TEMPLATE/Question.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
name: ❓ Support Question
3+
about: 🛑 If you have a question 💬, please check out our support channels!
4+
---
5+
6+
------------ 👆 Click "Preview"!
7+
8+
Issues on GitHub are intended to be related to problems with the library itself
9+
and feature requests so we recommend not using this medium to ask them here 😁.
10+
11+
---
12+
13+
## ❓ Support Forums
14+
15+
- Discord https://discord.gg/testing-library
16+
- Stack Overflow
17+
https://stackoverflow.com/questions/tagged/react-testing-library
18+
19+
**ISSUES WHICH ARE QUESTIONS WILL BE CLOSED**

‎.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<!--
2+
Thanks for your interest in the project. Bugs filed and PRs submitted are appreciated!
3+
4+
Please make sure that you are familiar with and follow the Code of Conduct for
5+
this project (found in the CODE_OF_CONDUCT.md file).
6+
7+
Also, please make sure you're familiar with and follow the instructions in the
8+
contributing guidelines (found in the CONTRIBUTING.md file).
9+
10+
If you're new to contributing to open source projects, you might find this free
11+
video course helpful: https://kcd.im/pull-request
12+
13+
Please fill out the information below to expedite the review and (hopefully)
14+
merge of your pull request!
15+
-->
16+
17+
<!-- What changes are being made? (What feature/bug is being fixed here?) -->
18+
19+
**What**:
20+
21+
<!-- Why are these changes necessary? -->
22+
23+
**Why**:
24+
25+
<!-- How were these changes implemented? -->
26+
27+
**How**:
28+
29+
<!-- Have you done all of these things? -->
30+
31+
**Checklist**:
32+
33+
<!-- add "N/A" to the end of each line that's irrelevant to your changes -->
34+
35+
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" -->
36+
37+
- [ ] Documentation added to the
38+
[docs site](https://github.com/testing-library/testing-library-docs)
39+
- [ ] Tests
40+
- [ ] Ready to be merged
41+
<!-- In your opinion, is this ready to be merged as soon as it's reviewed? -->
42+
43+
<!-- feel free to add additional comments -->

0 commit comments

Comments
 (0)
Please sign in to comment.