Skip to content
Merged
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
3 changes: 2 additions & 1 deletion napi/parser/test/parse-raw.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,8 @@ describe.concurrent('fixtures', () => {
it.each(benchFixturePaths)('%s', path => runCaseInWorker(TEST_TYPE_FIXTURE, path));
});

describeRangeParent.concurrent('range & parent fixtures', () => {
// `antd.js` test sometimes takes longer than 5 seconds on CI, so increase timeout to 10 seconds
describeRangeParent.concurrent('range & parent fixtures', { timeout: 10_000 }, () => {
// oxlint-disable-next-line jest/expect-expect
it.each(benchFixturePaths)('%s', path => runCaseInWorker(TEST_TYPE_FIXTURE | TEST_TYPE_RANGE_PARENT, path));
});
Expand Down
Loading