snapshot tests: sort haps by part

This commit is contained in:
Felix Roos 2023-07-04 18:43:26 +02:00
parent f07859996e
commit 00bd60a855
3 changed files with 4853 additions and 4853 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -187,7 +187,7 @@ evalScope(
export const queryCode = async (code, cycles = 1) => {
const { pattern } = await evaluate(code);
const haps = pattern.queryArc(0, cycles);
const haps = pattern.sortHapsByPart().queryArc(0, cycles);
return haps.map((h) => h.show(true));
};