Skip to content

Commit

Permalink
ci: update rangeStrategy
Browse files Browse the repository at this point in the history
  • Loading branch information
vermaysha committed Jun 4, 2024
1 parent ccd20b5 commit 353d1f0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
"extends": ["config:recommended"],
"rangeStrategy": "bump"
}
2 changes: 1 addition & 1 deletion tests/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ describe('Compression With Elysia', () => {

const res = await app.handle(req())

expect(res.headers.get('set-cookie')).toBe('test=test')
expect(res.headers.get('set-cookie')).toBe('test=test; Path=/')

Check failure on line 145 in tests/index.test.ts

View workflow job for this annotation

GitHub Actions / Build and test code

error: expect(received).toBe(expected)

Expected: "test=test; Path=/" Received: "test=test" at /home/runner/work/elysia-compress/elysia-compress/tests/index.test.ts:145:5
})

it('stream should be compressed', async () => {
Expand Down

0 comments on commit 353d1f0

Please sign in to comment.