Skip to content

Commit 39f7643

Browse files
authored
fix(js): bump pprl multi-level test timeout + bump to v0.3.1 (#49)
The standard/high/paranoid PPRL end-to-end test (~3.9s on developer laptop) occasionally times out under CI concurrent load at the default 5000ms budget. Bump the per-test timeout to 15000ms; no behavior change. v0.3.0 publish-npm workflow failed on this flake (run 24472319544). Re-tag as v0.3.1 to trigger a clean publish.
1 parent cc8ba4c commit 39f7643

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/goldenmatch-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "goldenmatch",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Entity resolution toolkit — deduplicate, match, and create golden records",
55
"type": "module",
66
"exports": {

packages/goldenmatch-js/tests/unit/pprl-protocol.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ describe("runPPRL", () => {
199199
expect(hits).toBeGreaterThanOrEqual(7);
200200
});
201201

202-
it("runs end-to-end with security_level standard/high/paranoid and finds same true pairs", () => {
202+
it("runs end-to-end with security_level standard/high/paranoid and finds same true pairs", { timeout: 15000 }, () => {
203203
const { a, b } = twoPartiesWithOverlap();
204204
const baseFields: string[] = ["first_name", "last_name", "email"];
205205

0 commit comments

Comments
 (0)