mol_vary 0.0.70 → 0.0.71

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_vary",
3
- "version": "0.0.70",
3
+ "version": "0.0.71",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
@@ -29,6 +29,8 @@
29
29
  "$mol_dom",
30
30
  "$mol_dom_context",
31
31
  "$node",
32
+ "$node_internal_check",
33
+ "$node_internal",
32
34
  "$mol_exec",
33
35
  "$mol_run",
34
36
  "$mol_error_mix",
@@ -73,13 +75,14 @@
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_dom_serialize",
80
82
  "$mol_dom_parse"
81
83
  ],
82
84
  "dependencies": {
85
+ "internal": "*",
83
86
  "jsdom": "*"
84
87
  }
85
88
  }
package/web.test.js CHANGED
@@ -1242,8 +1242,6 @@ var $;
1242
1242
  for (let i = 1; i < args.length; ++i) {
1243
1243
  if ($mol_compare_deep(args[0], args[i]))
1244
1244
  continue;
1245
- if (args[0] instanceof $mol_dom_context.Element && args[i] instanceof $mol_dom_context.Element && args[0].outerHTML === args[i].outerHTML)
1246
- continue;
1247
1245
  return $mol_fail(new Error(`Equality assertion failure`, { cause: { 0: args[0], [i]: args[i] } }));
1248
1246
  }
1249
1247
  }