charlike
Version:
Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options
18 lines (13 loc) • 428 B
JavaScript
;
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();
});