mol_db 0.0.1621 → 0.0.1622

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_db",
3
- "version": "0.0.1621",
3
+ "version": "0.0.1622",
4
4
  "exports": {
5
5
  "node": {
6
6
  "import": "./node.mjs",
@@ -25,6 +25,8 @@
25
25
  "$mol_dom_context",
26
26
  "$mol_dom",
27
27
  "$node",
28
+ "$node_internal_check",
29
+ "$node_internal",
28
30
  "$mol_exec",
29
31
  "$mol_run",
30
32
  "$mol_error_mix",
@@ -70,11 +72,12 @@
70
72
  "$mol_maybe",
71
73
  "$mol_term_color",
72
74
  "$mol_term",
73
- "$mol_fail_catch",
74
75
  "$mol_fail_log",
76
+ "$mol_fail_catch",
75
77
  "$mol_try"
76
78
  ],
77
79
  "dependencies": {
80
+ "internal": "*",
78
81
  "jsdom": "*",
79
82
  "fake-indexeddb": "*"
80
83
  }
package/web.test.js CHANGED
@@ -1263,8 +1263,6 @@ var $;
1263
1263
  for (let i = 1; i < args.length; ++i) {
1264
1264
  if ($mol_compare_deep(args[0], args[i]))
1265
1265
  continue;
1266
- if (args[0] instanceof $mol_dom_context.Element && args[i] instanceof $mol_dom_context.Element && args[0].outerHTML === args[i].outerHTML)
1267
- continue;
1268
1266
  return $mol_fail(new Error(`Equality assertion failure`, { cause: { 0: args[0], [i]: args[i] } }));
1269
1267
  }
1270
1268
  }