Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

More tolerance on memory leak tests #137

Merged
merged 2 commits into from
Feb 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion memory-leaks/tests/cell.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe("# Cell memory leaks", () => {
// Markdown cell
{ leak: null, objects: 867, collections: 28 },
// Raw cell
{ leak: true, objects: 673, collections: 28 },
{ leak: true, objects: 706, collections: 28 },
],
});
});
Expand Down
2 changes: 1 addition & 1 deletion memory-leaks/tests/file-editor.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ import * as scenario from "./file-editor.mjs";

describe("# File editor memory leaks", () => {
it("Opening a text file", async () => {
await testScenario(scenario, { expectations: [{ objects: 648, collections: 4 }] });
await testScenario(scenario, { expectations: [{ objects: 654, collections: 4 }] });
});
});