Skip to content

Commit d5c2dce

Browse files
committed
remove some unnecessary pure version tests
1 parent 834c87b commit d5c2dce

File tree

5 files changed

+0
-5
lines changed

5 files changed

+0
-5
lines changed

tests/pure/esnext.map.delete-all.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ QUnit.test('Map#deleteAll', assert => {
66

77
assert.isFunction(deleteAll);
88
assert.arity(deleteAll, 0);
9-
assert.name(deleteAll, 'deleteAll');
109
assert.nonEnumerable(Map.prototype, 'deleteAll');
1110

1211
let set = new Map([[1, 2], [2, 3], [3, 4]]);

tests/pure/esnext.map.find-key.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ QUnit.test('Map#findKey', assert => {
55

66
assert.isFunction(findKey);
77
assert.arity(findKey, 1);
8-
assert.name(findKey, 'findKey');
98
assert.nonEnumerable(Map.prototype, 'findKey');
109

1110
const set = new Map([[1, 2]]);

tests/pure/esnext.map.find.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ QUnit.test('Map#find', assert => {
55

66
assert.isFunction(find);
77
assert.arity(find, 1);
8-
assert.name(find, 'find');
98
assert.nonEnumerable(Map.prototype, 'find');
109

1110
const set = new Map([[1, 2]]);

tests/pure/esnext.map.key-of.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import Map from 'core-js-pure/features/map';
33
QUnit.test('Map#keyOf', assert => {
44
const { keyOf } = Map.prototype;
55
assert.isFunction(keyOf);
6-
assert.name(keyOf, 'keyOf');
76
assert.arity(keyOf, 1);
87
assert.nonEnumerable(Map.prototype, 'keyOf');
98

tests/pure/esnext.weak-map.delete-all.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ QUnit.test('WeakMap#deleteAll', assert => {
55

66
assert.isFunction(deleteAll);
77
assert.arity(deleteAll, 0);
8-
assert.name(deleteAll, 'deleteAll');
98
assert.nonEnumerable(WeakMap.prototype, 'deleteAll');
109

1110
const a = [];

0 commit comments

Comments
 (0)