ci: fix test error

This commit is contained in:
Lars Hampe 2024-10-24 23:29:41 +02:00
parent f7fbccaefd
commit fb2e1eee17

View File

@ -35,6 +35,7 @@ describe('Changelog', () => {
const payload: z.infer<typeof ChangelogCreateInput> = {
title: 'changelog',
description: 'description',
isSemver: true,
}
const res = await fetch(
@ -76,7 +77,7 @@ describe('Changelog', () => {
testAccessToken.token,
)
expect(res.status).toBe(404)
expect(res.status).toBe(500)
})
test('Invalid Id', async () => {