ci: fix test error
Some checks failed
Build and Push Docker Image / tests (push) Successful in 36s
Build and Push Docker Image / build (push) Failing after 1m9s

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