@blazediff/bun 1.1.7 → 1.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -5
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ Bun test matcher for visual regression testing with blazediff. Powered by @blaze
|
|
|
13
13
|
|
|
14
14
|
- **Native Bun matcher**: `toMatchImageSnapshot()` extends Bun's expect
|
|
15
15
|
- **Snapshot state tracking**: Bun reports accurate snapshot counts (when API available)
|
|
16
|
-
- **Multiple comparison algorithms**: `core`, `
|
|
16
|
+
- **Multiple comparison algorithms**: `core`, `core-native`, `ssim`, `msssim`, `hitchhikers-ssim`, `gmsd`
|
|
17
17
|
- **Auto-setup**: Imports and registers automatically
|
|
18
18
|
- **Update mode**: Works with Bun's `-u`/`--update` flag
|
|
19
19
|
- **TypeScript support**: Full type definitions included
|
|
@@ -71,7 +71,7 @@ Bun test matcher for image snapshot comparison.
|
|
|
71
71
|
</tr>
|
|
72
72
|
<tr>
|
|
73
73
|
<td><code>method</code></td>
|
|
74
|
-
<td>'core' | '
|
|
74
|
+
<td>'core' | 'core-native' | 'ssim' | 'msssim' | 'hitchhikers-ssim' | 'gmsd'</td>
|
|
75
75
|
<td>'core'</td>
|
|
76
76
|
<td>Comparison algorithm to use</td>
|
|
77
77
|
</tr>
|
|
@@ -109,7 +109,13 @@ Bun test matcher for image snapshot comparison.
|
|
|
109
109
|
<td><code>threshold</code></td>
|
|
110
110
|
<td>number</td>
|
|
111
111
|
<td>0.1</td>
|
|
112
|
-
<td>Color difference threshold (0-1) for core/
|
|
112
|
+
<td>Color difference threshold (0-1) for core/core-native methods</td>
|
|
113
|
+
</tr>
|
|
114
|
+
<tr>
|
|
115
|
+
<td><code>runInWorker</code></td>
|
|
116
|
+
<td>boolean</td>
|
|
117
|
+
<td>true</td>
|
|
118
|
+
<td>Run comparison in worker thread for better performance</td>
|
|
113
119
|
</tr>
|
|
114
120
|
</table>
|
|
115
121
|
|
|
@@ -138,8 +144,8 @@ it('renders correctly', async () => {
|
|
|
138
144
|
```typescript
|
|
139
145
|
// Fast Rust-native comparison (file paths only)
|
|
140
146
|
await expect('/path/to/image.png').toMatchImageSnapshot({
|
|
141
|
-
method: '
|
|
142
|
-
snapshotIdentifier: 'image-
|
|
147
|
+
method: 'core-native',
|
|
148
|
+
snapshotIdentifier: 'image-core-native',
|
|
143
149
|
});
|
|
144
150
|
|
|
145
151
|
// Pure JavaScript comparison
|
package/dist/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ declare module "bun:test" {
|
|
|
15
15
|
* ```typescript
|
|
16
16
|
* // Compare file path
|
|
17
17
|
* await expect('/path/to/screenshot.png').toMatchImageSnapshot({
|
|
18
|
-
* method: '
|
|
18
|
+
* method: 'core-native',
|
|
19
19
|
* failureThreshold: 100,
|
|
20
20
|
* failureThresholdType: 'pixel',
|
|
21
21
|
* });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blazediff/bun",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"description": "Bun test matcher for visual regression testing with blazediff",
|
|
5
5
|
"private": false,
|
|
6
6
|
"publishConfig": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"homepage": "https://blazediff.dev",
|
|
34
34
|
"license": "MIT",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@blazediff/matcher": "1.
|
|
36
|
+
"@blazediff/matcher": "1.3.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/bun": "^1.2.10",
|