mol_view_tree2_lib 1.0.72 → 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.72",
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",
@@ -141,12 +143,12 @@
141
143
  "$mol_charset_encoding",
142
144
  "$mol_charset_encode",
143
145
  "$mol_file_transaction",
144
- "$node_modules",
145
146
  "$mol_view_tree2_to_js_test",
146
147
  "$mol_view_tree2_to_locale",
147
148
  "$mol_view_tree2_to_text"
148
149
  ],
149
150
  "dependencies": {
151
+ "internal": "*",
150
152
  "jsdom": "*"
151
153
  }
152
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
  }