From 7c4f05fae2ae12d698dc28421f5d4659162f928a Mon Sep 17 00:00:00 2001 From: monotonee Date: Tue, 13 Jun 2017 14:41:21 -0400 Subject: Fixed #28295 -- Made admin's URLify.js trim trailing hyphens. --- js_tests/admin/URLify.test.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'js_tests/admin/URLify.test.js') diff --git a/js_tests/admin/URLify.test.js b/js_tests/admin/URLify.test.js index b1d7d1f301..fafa9af113 100644 --- a/js_tests/admin/URLify.test.js +++ b/js_tests/admin/URLify.test.js @@ -19,3 +19,7 @@ QUnit.test('strip non-URL characters', function(assert) { QUnit.test('merge adjacent whitespace', function(assert) { assert.strictEqual(URLify('D silent', 8, true), 'd-silent'); }); + +QUnit.test('trim trailing hyphens', function(assert) { + assert.strictEqual(URLify('D silent always', 9, true), 'd-silent'); +}); -- cgit v1.3