Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « test « string.prototype.trimend « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ee8f6703ccd64a800e358bad5a1b60a4fe026f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
'use strict';

var trimEnd = 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 () { trimEnd(undefined, 'a'); }, TypeError, 'undefined is not an object');
		st['throws'](function () { trimEnd(null, 'a'); }, TypeError, 'null is not an object');
		st.end();
	});

	runTests(trimEnd, t);

	t.end();
});