mol_plot_all 1.2.765 → 1.2.766

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
@@ -1266,6 +1266,24 @@ var $;
1266
1266
  ;
1267
1267
  "use strict";
1268
1268
  var $;
1269
+ (function ($_1) {
1270
+ $mol_test({
1271
+ 'test types'($) {
1272
+ class A {
1273
+ static a() {
1274
+ return Promise.resolve('');
1275
+ }
1276
+ static b() {
1277
+ return $mol_wire_sync(this).a();
1278
+ }
1279
+ }
1280
+ },
1281
+ });
1282
+ })($ || ($ = {}));
1283
+ //mol/wire/sync/sync.test.ts
1284
+ ;
1285
+ "use strict";
1286
+ var $;
1269
1287
  (function ($) {
1270
1288
  function $mol_wait_timeout_async(timeout) {
1271
1289
  const promise = $mol_promise();
@@ -1286,6 +1304,16 @@ var $;
1286
1304
  var $;
1287
1305
  (function ($_1) {
1288
1306
  $mol_test({
1307
+ 'test types'($) {
1308
+ class A {
1309
+ static a() {
1310
+ return '';
1311
+ }
1312
+ static b() {
1313
+ return $mol_wire_async(this).a();
1314
+ }
1315
+ }
1316
+ },
1289
1317
  async 'Latest method calls wins'($) {
1290
1318
  class NameLogger extends $mol_object2 {
1291
1319
  static $ = $;