1
0
mirror of synced 2025-12-25 11:03:37 -05:00

Compare commits

...

1 Commits

Author SHA1 Message Date
Robert Sese
e91d25e768 longer timeout for article-api tests that were timing out 2025-12-14 14:25:38 -06:00
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ interface ErrorResponse {
error: string
}
describe('pageinfo api', () => {
describe('pageinfo api', { timeout: 10000 }, () => {
beforeAll(() => {
// If you didn't set the `ROOT` variable, the tests will fail rather
// cryptically. So as a warning for engineers running these tests,

View File

@@ -10,7 +10,7 @@ const makeURL = (pathname: string, apiVersion?: string): string => {
return `/api/article/body?${params}`
}
describe('REST transformer', () => {
describe('REST transformer', { timeout: 10000 }, () => {
beforeAll(() => {
if (!process.env.ROOT) {
console.warn(