Skip to content

Commit 81aa02e

Browse files
committedJan 2, 2025··
[Tests] use get-proto and set-proto directly
1 parent 7635959 commit 81aa02e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed
 

‎package.json

+2
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,14 @@
6767
"eslint": "=8.8.0",
6868
"evalmd": "^0.0.19",
6969
"functions-have-names": "^1.2.3",
70+
"get-proto": "^1.0.1",
7071
"has-strict-mode": "^1.0.1",
7172
"hasown": "^2.0.2",
7273
"in-publish": "^2.0.1",
7374
"npmignore": "^0.3.1",
7475
"nyc": "^10.3.2",
7576
"safe-publish-latest": "^2.0.0",
77+
"set-proto": "^1.0.0",
7678
"tape": "^5.9.0"
7779
},
7880
"engines": {

‎test/tests.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
'use strict';
22

33
var hasOwn = require('hasown');
4-
var getProto = require('es-abstract/helpers/getProto');
5-
var setProto = require('es-abstract/helpers/setProto');
4+
var getProto = require('get-proto');
5+
var setProto = require('set-proto');
66

77
module.exports = function (copyWithin, t) {
88
t.test('modifies the object in-place', { only: true }, function (st) {

0 commit comments

Comments
 (0)
Please sign in to comment.