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 408ab24 commit ad52baa
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 3 deletions.
Expand Up @@ -24,3 +24,6 @@ const foo = new Promise((resolve) => {
queueMicrotask(() => globalThis);

Observable.from(10);

Promise.allSettled([]);
S.matchAll();
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();
Expand Up @@ -24,12 +24,12 @@ require("core-js/modules/es.string.iterator");

require("core-js/modules/es.string.match");

require("core-js/modules/esnext.global-this");

require("core-js/modules/web.dom-collections.iterator");

require("core-js/modules/web.queue-microtask");

require("core-js/modules/esnext.global-this");

Array.from; // static method

Map; // built-in
Expand Down
Expand Up @@ -49,5 +49,6 @@ Using polyfills with `usage` option:
es.object.to-string { "firefox":"50", "ie":"11" }
es.promise { "chrome":"52", "firefox":"50", "ie":"11" }
es.string.iterator { "ie":"11" }
esnext.global-this { "chrome":"52", "firefox":"50", "ie":"11" }
web.dom-collections.iterator { "chrome":"52", "firefox":"50", "ie":"11" }
web.queue-microtask { "chrome":"52", "firefox":"50", "ie":"11" }
Expand Up @@ -49,6 +49,6 @@ Using polyfills with `usage` option:
es.object.to-string { "firefox":"50", "ie":"11" }
es.promise { "chrome":"52", "firefox":"50", "ie":"11" }
es.string.iterator { "ie":"11" }
esnext.global-this { "chrome":"52", "firefox":"50", "ie":"11" }
web.dom-collections.iterator { "chrome":"52", "firefox":"50", "ie":"11" }
web.queue-microtask { "chrome":"52", "firefox":"50", "ie":"11" }
esnext.global-this { "chrome":"52", "firefox":"50", "ie":"11" }
Expand Up @@ -49,5 +49,6 @@ Using polyfills with `usage` option:
es.object.to-string { "firefox":"50", "ie":"11" }
es.promise { "chrome":"52", "firefox":"50", "ie":"11" }
es.string.iterator { "ie":"11" }
esnext.global-this { "chrome":"52", "firefox":"50", "ie":"11" }
web.dom-collections.iterator { "chrome":"52", "firefox":"50", "ie":"11" }
web.queue-microtask { "chrome":"52", "firefox":"50", "ie":"11" }
Expand Up @@ -49,5 +49,6 @@ Using polyfills with `usage` option:
es.object.to-string { "firefox":"50", "ie":"11" }
es.promise { "chrome":"52", "firefox":"50", "ie":"11" }
es.string.iterator { "ie":"11" }
esnext.global-this { "chrome":"52", "firefox":"50", "ie":"11" }
web.dom-collections.iterator { "chrome":"52", "firefox":"50", "ie":"11" }
web.queue-microtask { "chrome":"52", "firefox":"50", "ie":"11" }

0 comments on commit ad52baa

Please sign in to comment.