mol_view_tree2_lib 1.0.73 → 1.0.74

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_view_tree2_lib",
3
- "version": "1.0.73",
3
+ "version": "1.0.74",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
@@ -119,6 +119,8 @@
119
119
  "$mol_dom_context",
120
120
  "$mol_dom",
121
121
  "$node",
122
+ "$node_internal_check",
123
+ "$node_internal",
122
124
  "$mol_exec",
123
125
  "$mol_run",
124
126
  "$mol_error_mix",
@@ -146,6 +148,7 @@
146
148
  "$mol_view_tree2_to_text"
147
149
  ],
148
150
  "dependencies": {
151
+ "internal": "*",
149
152
  "jsdom": "*"
150
153
  }
151
154
  }
package/web.test.js CHANGED
@@ -874,8 +874,6 @@ var $;
874
874
  for (let i = 1; i < args.length; ++i) {
875
875
  if ($mol_compare_deep(args[0], args[i]))
876
876
  continue;
877
- if (args[0] instanceof $mol_dom_context.Element && args[i] instanceof $mol_dom_context.Element && args[0].outerHTML === args[i].outerHTML)
878
- continue;
879
877
  return $mol_fail(new Error(`Equality assertion failure`, { cause: { 0: args[0], [i]: args[i] } }));
880
878
  }
881
879
  }