mol_dump_lib 0.0.905 → 0.0.907

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": "mol_dump_lib",
3
- "version": "0.0.905",
3
+ "version": "0.0.907",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
@@ -26,6 +26,8 @@
26
26
  "$mol_dom_context",
27
27
  "$mol_dom",
28
28
  "$node",
29
+ "$node_internal_check",
30
+ "$node_internal",
29
31
  "$mol_exec",
30
32
  "$mol_run",
31
33
  "$mol_error_mix",
@@ -71,8 +73,8 @@
71
73
  "$mol_maybe",
72
74
  "$mol_term_color",
73
75
  "$mol_term",
74
- "$mol_fail_catch",
75
76
  "$mol_fail_log",
77
+ "$mol_fail_catch",
76
78
  "$mol_try",
77
79
  "$mol_promise_blocker",
78
80
  "$mol_promise_promise",
@@ -189,6 +191,7 @@
189
191
  "$mol_expander"
190
192
  ],
191
193
  "dependencies": {
194
+ "internal": "*",
192
195
  "jsdom": "*"
193
196
  }
194
197
  }
package/web.test.js CHANGED
@@ -692,8 +692,6 @@ var $;
692
692
  for (let i = 1; i < args.length; ++i) {
693
693
  if ($mol_compare_deep(args[0], args[i]))
694
694
  continue;
695
- if (args[0] instanceof $mol_dom_context.Element && args[i] instanceof $mol_dom_context.Element && args[0].outerHTML === args[i].outerHTML)
696
- continue;
697
695
  return $mol_fail(new Error(`Equality assertion failure`, { cause: { 0: args[0], [i]: args[i] } }));
698
696
  }
699
697
  }