AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
import { describe, expect, test } from 'vitest'
import { head } from '@/tests/helpers/e2etest'
describe('bad URLs', () => {
test('any URL with /index.md suffix redirects to be without suffix', async () => {
const URLs = ['/index.md', '/en/index.md', '/en/actions/index.md']
for (const url of URLs) {
const res = await head(url)
expect(res.statusCode).toBe(302)
expect(res.headers.location).toBe(url.replace(/\/index\.md$/, ''))
expect(res.headers['cache-control']).toContain('public')
expect(res.headers['cache-control']).toMatch(/max-age=[1-9]/)
}
})
})