-
Notifications
You must be signed in to change notification settings - Fork 751
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1662 from stripe/latest-codegen-beta
API Updates for beta branch
- Loading branch information
Showing
161 changed files
with
6,577 additions
and
6,301 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,6 +65,7 @@ jobs: | |
os: | ||
- "ubuntu-latest" | ||
node: | ||
- "19" | ||
- "18" | ||
- "16" | ||
- "14" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
'use strict'; | ||
|
||
// Configuration for our Mocha test suite. | ||
const config = { | ||
color: true, | ||
// Run tests in parallel. | ||
parallel: true, | ||
// Recurse through all tests in the test directory. | ||
recursive: true, | ||
extension: ["js", "ts"], | ||
require: "ts-node/register/transpile-only" | ||
}; | ||
|
||
if (process.argv.find(a => a.includes('WebStorm'))) { | ||
// Parallel doesn't work correctly when running from JetBrains WebStorm | ||
config.parallel = false; | ||
} | ||
|
||
module.exports = config; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v218 | ||
v219 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.