Skip to content

Commit

Permalink
🔧 Fix version mismatch in e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fwkoch committed Jan 23, 2025
1 parent 4ff01b6 commit 1a91292
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/mystmd/tests/endToEnd.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ function cleanHashes(text: string) {
.replace(/,\s*"urlOptimized":\s*"[-./a-z0-9]{0,50}"/g, '')
.replace(/,\s*"thumbnailOptimized":\s*"[-./a-z0-9]{0,50}"/g, '')
.replace(/-[a-f0-9]{32}\./g, '.')
.replace(/"key":\s*"[a-zA-Z0-9]{10}"/g, '"key": "keyABC0123"');
.replace(/"key":\s*"[a-zA-Z0-9]{10}"/g, '"key": "keyABC0123"')
.replace(/"myst":\s*"[0-9]+\.[0-9]+\.[0-9]+"/g, '"myst": "0.0.0"');
}

const only = '';
Expand Down

0 comments on commit 1a91292

Please sign in to comment.