mirror of
https://github.com/tc39/test262.git
synced 2025-05-30 11:40:30 +02:00
$ test262-harness --hostType=d8 -t 4 --hostPath=`which d8` test/harness/*.js Ran 147 tests 147 passed 0 failed $ test262-harness --hostType=node -t 4 --hostPath=`which node` test/harness/*.js Ran 147 tests 147 passed 0 failed $ test262-harness --hostType=jsshell -t 4 --hostPath=`which js` test/harness/*.js Ran 147 tests 147 passed 0 failed Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
16 lines
463 B
JavaScript
16 lines
463 B
JavaScript
// Copyright (C) 2017 Leo Balter. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: >
|
|
The first argument should have an own property
|
|
includes: [propertyHelper.js,sta.js]
|
|
---*/
|
|
assert.throws(Test262Error, () => {
|
|
verifyProperty(Object, 'JeanPaulSartre', {});
|
|
}, "inexisting property");
|
|
|
|
assert.throws(Test262Error, () => {
|
|
verifyProperty({}, 'hasOwnProperty', {});
|
|
}, "inexisting own property");
|