mol_wire_dom 0.0.1600 → 0.0.1602

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_wire_dom",
3
- "version": "0.0.1600",
3
+ "version": "0.0.1602",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
@@ -71,6 +71,8 @@
71
71
  "$mol_dom",
72
72
  "$mol_dom_context",
73
73
  "$node",
74
+ "$node_internal_check",
75
+ "$node_internal",
74
76
  "$mol_exec",
75
77
  "$mol_run",
76
78
  "$mol_error_mix",
@@ -80,6 +82,7 @@
80
82
  "$mol_wire_patch"
81
83
  ],
82
84
  "dependencies": {
85
+ "internal": "*",
83
86
  "jsdom": "*"
84
87
  }
85
88
  }
package/web.test.js CHANGED
@@ -819,8 +819,6 @@ var $;
819
819
  for (let i = 1; i < args.length; ++i) {
820
820
  if ($mol_compare_deep(args[0], args[i]))
821
821
  continue;
822
- if (args[0] instanceof $mol_dom_context.Element && args[i] instanceof $mol_dom_context.Element && args[0].outerHTML === args[i].outerHTML)
823
- continue;
824
822
  return $mol_fail(new Error(`Equality assertion failure`, { cause: { 0: args[0], [i]: args[i] } }));
825
823
  }
826
824
  }