Tim van der Lippe | 2c89197 | 2021-07-29 16:22:50 +0100 | [diff] [blame^] | 1 | 'use strict'; |
| 2 | |
| 3 | var implementation = require('../implementation'); |
| 4 | var callBind = require('call-bind'); |
| 5 | var test = require('tape'); |
| 6 | var hasStrictMode = require('has-strict-mode')(); |
| 7 | var runTests = require('./tests'); |
| 8 | |
| 9 | test('as a function', function (t) { |
| 10 | t.test('bad array/this value', { skip: !hasStrictMode }, function (st) { |
| 11 | /* eslint no-useless-call: 0 */ |
| 12 | st['throws'](function () { implementation.call(undefined); }, TypeError, 'undefined is not an object'); |
| 13 | st['throws'](function () { implementation.call(null); }, TypeError, 'null is not an object'); |
| 14 | st.end(); |
| 15 | }); |
| 16 | |
| 17 | runTests(callBind(implementation), t); |
| 18 | |
| 19 | t.end(); |
| 20 | }); |