Skip to content

Commit f178ebb

Browse files
author
Ben Monro
committedMay 3, 2019
Merge branch 'master' of github.com:testing-library/svelte-testing-library
2 parents 8fe6b71 + 0fa4adb commit f178ebb

File tree

2 files changed

+44
-1
lines changed

2 files changed

+44
-1
lines changed
 

Diff for: ‎.all-contributorsrc

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"files": [
3+
"README.md"
4+
],
5+
"imageSize": 100,
6+
"commit": false,
7+
"contributors": [
8+
{
9+
"login": "benmonro",
10+
"name": "Ben Monro",
11+
"avatar_url": "https://avatars3.githubusercontent.com/u/399236?v=4",
12+
"profile": "https://github.com/benmonro",
13+
"contributions": [
14+
"code",
15+
"test",
16+
"ideas",
17+
"doc"
18+
]
19+
},
20+
{
21+
"login": "EmilTholin",
22+
"name": "Emil Tholin",
23+
"avatar_url": "https://avatars0.githubusercontent.com/u/11573167?v=4",
24+
"profile": "https://twitter.com/EmilTholin",
25+
"contributions": [
26+
"code",
27+
"test",
28+
"ideas"
29+
]
30+
}
31+
],
32+
"contributorsPerLine": 7,
33+
"projectName": "svelte-testing-library",
34+
"projectOwner": "testing-library",
35+
"repoType": "github",
36+
"repoHost": "https://github.com"
37+
}

Diff for: ‎README.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ practices.</p>
3636
[![Watch on GitHub][github-watch-badge]][github-watch]
3737
[![Star on GitHub][github-star-badge]][github-star]
3838
[![Tweet][twitter-badge]][twitter]
39+
[![All Contributors](https://img.shields.io/badge/all_contributors-2-orange.svg?style=flat-square)](#contributors)
3940
<!-- prettier-ignore-end -->
4041

4142
<div align="center">
@@ -113,7 +114,7 @@ App.spec.js
113114

114115
```javascript
115116
import App from '../src/App.svelte'
116-
import {render} from '../src'
117+
import {render} from 'svlt-testing-library'
117118
describe('App', () => {
118119
test('should render greeting', () => {
119120
const {getByText} = render(App, {props: {name: 'world'}})
@@ -186,6 +187,11 @@ light-weight, simple, and understandable.
186187

187188
## Contributors
188189

190+
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
191+
<!-- prettier-ignore -->
192+
<table><tr><td align="center"><a href="https://github.com/benmonro"><img src="https://avatars3.githubusercontent.com/u/399236?v=4" width="100px;" alt="Ben Monro"/><br /><sub><b>Ben Monro</b></sub></a><br /><a href="https://github.com/testing-library/svelte-testing-library/commits?author=benmonro" title="Code">💻</a> <a href="https://github.com/testing-library/svelte-testing-library/commits?author=benmonro" title="Tests">⚠️</a> <a href="#ideas-benmonro" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/testing-library/svelte-testing-library/commits?author=benmonro" title="Documentation">📖</a></td><td align="center"><a href="https://twitter.com/EmilTholin"><img src="https://avatars0.githubusercontent.com/u/11573167?v=4" width="100px;" alt="Emil Tholin"/><br /><sub><b>Emil Tholin</b></sub></a><br /><a href="https://github.com/testing-library/svelte-testing-library/commits?author=EmilTholin" title="Code">💻</a> <a href="https://github.com/testing-library/svelte-testing-library/commits?author=EmilTholin" title="Tests">⚠️</a> <a href="#ideas-EmilTholin" title="Ideas, Planning, & Feedback">🤔</a></td></tr></table>
193+
194+
<!-- ALL-CONTRIBUTORS-LIST:END -->
189195
Thanks goes to these people ([emoji key][emojis]):
190196

191197
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->

0 commit comments

Comments
 (0)
Please sign in to comment.