test262/test/harness/verifyProperty-noproperty.js

16 lines
463 B
JavaScript
Raw Normal View History

2017-04-15 18:56:29 +02:00
// 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]
2017-04-15 18:56:29 +02:00
---*/
assert.throws(Test262Error, () => {
verifyProperty(Object, 'JeanPaulSartre', {});
}, "inexisting property");
assert.throws(Test262Error, () => {
verifyProperty({}, 'hasOwnProperty', {});
}, "inexisting own property");