We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5c72c3 commit b0f07eaCopy full SHA for b0f07ea
tests/entries/unit.mjs
@@ -752,6 +752,7 @@ for (PATH of ['@core-js/pure', 'core-js']) {
752
ok(load(NS, 'number/clamp')(6, 2, 4) === 4);
753
ok(load(NS, 'number/prototype/clamp').call(6, 2, 4) === 4);
754
ok(load(NS, 'promise/all-keyed')({}) instanceof Promise);
755
+ ok(load(NS, 'promise/all-settled-keyed')({}) instanceof Promise);
756
ok(load(NS, 'set/from')([1, 2, 3, 2, 1]) instanceof Set);
757
ok(load(NS, 'set/of')(1, 2, 3, 2, 1) instanceof Set);
758
ok(load(NS, 'string/cooked')`a${ 1 }b` === 'a1b');
@@ -857,12 +858,12 @@ for (PATH of ['@core-js/pure', 'core-js']) {
857
858
load('stage/0');
859
860
for (const key in entries) {
- if (key.startsWith('core-js/modules/')) {
861
- load('modules', key.slice(16));
+ if (key.startsWith('modules/')) {
862
+ load('modules', key.slice(8));
863
}
864
865
- ok(load());
866
+ ok(load('index'));
867
868
869
for (const NS of ['es', 'stable', 'actual', 'full']) {
0 commit comments