Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/article-api/tests/pageinfo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/article-api/tests/rest-transformer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
Loading