lix-website/themes/lix/assets/bootstrap/node_modules/string.prototype.padend/test/index.js
2024-04-26 22:49:34 -06:00

18 lines
434 B
JavaScript

'use strict';
var padEnd = require('../');
var test = require('tape');
var runTests = require('./tests');
test('as a function', function (t) {
t.test('bad array/this value', function (st) {
st['throws'](function () { padEnd(undefined, 'a'); }, TypeError, 'undefined is not an object');
st['throws'](function () { padEnd(null, 'a'); }, TypeError, 'null is not an object');
st.end();
});
runTests(padEnd, t);
t.end();
});