Skip to content

Commit 55951c9

Browse files
committed
Merge remote-tracking branch 'upstream/master' into master
2 parents 07b18b4 + e29ddc1 commit 55951c9

File tree

13 files changed

+6652
-301
lines changed

13 files changed

+6652
-301
lines changed

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
language: node_js
2+
node_js:
3+
- "stable"
4+
cache:
5+
directories:
6+
- "node_modules"

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,9 @@ Please read [`CONTRIBUTING`](CONTRIBUTING.md) for details on our [`CODE OF CONDU
138138

139139
- [Scott C Wilson](https://github.com/scottcwilson) donated the first-ever grant to this tool. A big thanks to him.
140140
- [Max Schmitt](https://github.com/mxschmitt) loved the tool and showed support with his donation. Thanks a lot.
141+
- [Aadit Kamat](https://github.com/aaditkamat) find the tool useful and showed support with his donation. A big thanks to him.
142+
- [Jean-Michel Fayard](https://github.com/jmfayard) used the generator to create his GitHub Profile README and he loved it. Thanks to him for showing support to the tool with the donation.
143+
141144

142145
## 🙏 Support
143146

jest.config.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,17 @@ module.exports = {
1010
transformIgnorePatterns: [`node_modules/(?!(gatsby)/)`],
1111
globals: {
1212
__PATH_PREFIX__: ``,
13+
__BASE_PATH__: ``,
1314
},
1415
setupFiles: [`<rootDir>/loadershim.js`],
1516
setupFilesAfterEnv: ["<rootDir>/setupTests.js"],
1617
snapshotSerializers: ["enzyme-to-json/serializer"],
1718
coverageThreshold: {
1819
global: {
19-
branches: 100,
20-
functions: 100,
21-
lines: 100,
22-
statements: 100,
20+
branches: 0,
21+
functions: 76,
22+
lines: 68,
23+
statements: 68,
2324
},
2425
},
2526
}

0 commit comments

Comments
 (0)