mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-12 15:20:13 +00:00
test(studio): relax large fixture timeout (#3040)
This commit is contained in:
@@ -59,11 +59,15 @@ describe("timeline performance fixture", () => {
|
|||||||
expect(Math.max(...perTrack.values())).toBeLessThanOrEqual(128);
|
expect(Math.max(...perTrack.values())).toBeLessThanOrEqual(128);
|
||||||
});
|
});
|
||||||
|
|
||||||
it.each(PROFILES)("generates an identical 50k %s fixture", (profile) => {
|
it.each(PROFILES)(
|
||||||
|
"generates an identical 50k %s fixture",
|
||||||
|
(profile) => {
|
||||||
const first = createTimelinePerformanceFixture({ elementCount: 50_000, profile });
|
const first = createTimelinePerformanceFixture({ elementCount: 50_000, profile });
|
||||||
const second = createTimelinePerformanceFixture({ elementCount: 50_000, profile });
|
const second = createTimelinePerformanceFixture({ elementCount: 50_000, profile });
|
||||||
expect(second).toEqual(first);
|
expect(second).toEqual(first);
|
||||||
});
|
},
|
||||||
|
30_000,
|
||||||
|
);
|
||||||
|
|
||||||
it.each(PROFILES)("builds the %s 1k scale profile", (profile) => {
|
it.each(PROFILES)("builds the %s 1k scale profile", (profile) => {
|
||||||
const fixture = createTimelinePerformanceFixture({ elementCount: 1_000, profile });
|
const fixture = createTimelinePerformanceFixture({ elementCount: 1_000, profile });
|
||||||
|
|||||||
Reference in New Issue
Block a user