tauri-kargo-tools 0.3.3 → 0.3.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tauri-kargo-tools",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "",
5
5
  "files": ["src"],
6
6
  "exports": { "./*": "./src/*" },
package/src/test.ts CHANGED
@@ -355,7 +355,7 @@ export async function assertEqualsSnapshot(actual: unknown, name: string, msg?:
355
355
  try {
356
356
  const response = await fetch(`/test/snapshot/${name}.json`)
357
357
  if (response.status === 404) {
358
- const updateSnapshot: UpdateSnapshot = { type: "snapshot", value: actual }
358
+ const updateSnapshot: UpdateSnapshot = { type: "snapshot", value: actual ,name:name}
359
359
  if (self) {
360
360
  self.postMessage(updateSnapshot)
361
361
  return
package/src/types.ts CHANGED
@@ -278,5 +278,6 @@ export interface Terminate {
278
278
  export type TestEvent = Assert | Log | Terminate
279
279
  export type UpdateSnapshot = {
280
280
  type: "snapshot",
281
+ name:string,
281
282
  value: any
282
283
  }