- upgrade all node dependencies

```
    "@octokit/rest": "^20.0.1",
    "node-fetch": "^3.3.2",
```
This commit is contained in:
Mike Penz
2023-07-28 11:47:20 +00:00
committed by GitHub
parent f0cbee5a3a
commit 240554bbf4
12 changed files with 8917 additions and 2047 deletions
+5 -1
View File
@@ -2,12 +2,16 @@ import {mergeConfiguration, resolveConfiguration} from '../src/utils'
import {Octokit} from '@octokit/rest'
import {buildChangelog} from '../src/transform'
import {pullData} from 'github-pr-collector'
import fetch from 'node-fetch'
jest.setTimeout(180000)
// load octokit instance
const octokit = new Octokit({
auth: `token ${process.env.GITHUB_TOKEN}`
auth: `token ${process.env.GITHUB_TOKEN}`,
request: {
fetch: fetch
}
})
it('Should have empty changelog (tags)', async () => {