Skip to content

Commit

Permalink
update test fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Dec 26, 2019
1 parent 10fe7c3 commit 6fbcbf6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@ const foo = new Promise((resolve) => {
queueMicrotask(() => globalThis);

Observable.from(10);

Promise.allSettled([]);
S.matchAll();
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ import "core-js/modules/es.promise";
import "core-js/modules/es.regexp.exec";
import "core-js/modules/es.string.iterator";
import "core-js/modules/es.string.match";
import "core-js/modules/esnext.global-this";
import "core-js/modules/esnext.promise.all-settled";
import "core-js/modules/esnext.string.match-all";
import "core-js/modules/web.dom-collections.iterator";
import "core-js/modules/web.queue-microtask";
Array.from; // static method
Expand Down Expand Up @@ -49,3 +52,5 @@ queueMicrotask(function () {
return globalThis;
});
Observable.from(10);
Promise.allSettled([]);
S.matchAll();

0 comments on commit 6fbcbf6

Please sign in to comment.