Skip to content

Commit 0078378

Browse files
fix(deps): update dependency @octokit/fixtures to v23 (#348)
* fix(deps): update dependency @octokit/fixtures to v23 * test: add `accept-encoding` header --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: wolfy1339 <[email protected]>
1 parent 3710ee7 commit 0078378

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"author": "Gregor Martynus (https://twitter.com/gr2m)",
3535
"license": "MIT",
3636
"dependencies": {
37-
"@octokit/fixtures": "22.0.6",
37+
"@octokit/fixtures": "23.1.1",
3838
"cachimo": "^2.0.1",
3939
"console-log-level": "^1.4.0",
4040
"cors": "^2.8.4",

test/integration/binary-response.test.js

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ test("binary response (octokit/rest.js#743)", async () => {
3333
)
3434
.set({
3535
accept: "application/vnd.github.v3+json",
36+
"accept-encoding": "gzip, compress, deflate, br",
3637
authorization: "token 0000000000000000000000000000000000000001",
3738
})
3839
.catch((error) => error.response);
@@ -47,6 +48,7 @@ test("binary response (octokit/rest.js#743)", async () => {
4748

4849
const { status } = await agent.get(pathname).set({
4950
accept: "application/vnd.github.v3+json",
51+
"accept-encoding": "gzip, compress, deflate, br",
5052
authorization: "token 0000000000000000000000000000000000000001",
5153
});
5254

0 commit comments

Comments
 (0)