mol_plot_all 1.2.1586 → 1.2.1588

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_plot_all",
3
- "version": "1.2.1586",
3
+ "version": "1.2.1588",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
@@ -28,6 +28,8 @@
28
28
  "$mol_dom_context",
29
29
  "$mol_dom",
30
30
  "$node",
31
+ "$node_internal_check",
32
+ "$node_internal",
31
33
  "$mol_exec",
32
34
  "$mol_run",
33
35
  "$mol_error_mix",
@@ -73,8 +75,8 @@
73
75
  "$mol_maybe",
74
76
  "$mol_term_color",
75
77
  "$mol_term",
76
- "$mol_fail_catch",
77
78
  "$mol_fail_log",
79
+ "$mol_fail_catch",
78
80
  "$mol_try",
79
81
  "$mol_promise_blocker",
80
82
  "$mol_promise_promise",
@@ -172,6 +174,7 @@
172
174
  "$mol_plot_mark_hor"
173
175
  ],
174
176
  "dependencies": {
177
+ "internal": "*",
175
178
  "jsdom": "*"
176
179
  }
177
180
  }
package/web.test.js CHANGED
@@ -695,8 +695,6 @@ var $;
695
695
  for (let i = 1; i < args.length; ++i) {
696
696
  if ($mol_compare_deep(args[0], args[i]))
697
697
  continue;
698
- if (args[0] instanceof $mol_dom_context.Element && args[i] instanceof $mol_dom_context.Element && args[0].outerHTML === args[i].outerHTML)
699
- continue;
700
698
  return $mol_fail(new Error(`Equality assertion failure`, { cause: { 0: args[0], [i]: args[i] } }));
701
699
  }
702
700
  }