mol_jsx_lib 0.0.624 → 0.0.626

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/web.test.js CHANGED
@@ -1126,6 +1126,34 @@ var $;
1126
1126
  var $;
1127
1127
  (function ($_1) {
1128
1128
  $mol_test({
1129
+ 'test types'($) {
1130
+ class A {
1131
+ static a() {
1132
+ return Promise.resolve('');
1133
+ }
1134
+ static b() {
1135
+ return $mol_wire_sync(this).a();
1136
+ }
1137
+ }
1138
+ },
1139
+ });
1140
+ })($ || ($ = {}));
1141
+ //mol/wire/sync/sync.test.ts
1142
+ ;
1143
+ "use strict";
1144
+ var $;
1145
+ (function ($_1) {
1146
+ $mol_test({
1147
+ 'test types'($) {
1148
+ class A {
1149
+ static a() {
1150
+ return '';
1151
+ }
1152
+ static b() {
1153
+ return $mol_wire_async(this).a();
1154
+ }
1155
+ }
1156
+ },
1129
1157
  async 'Latest method calls wins'($) {
1130
1158
  class NameLogger extends $mol_object2 {
1131
1159
  static $ = $;