en.javascript.info/1-js/4-data-structures/3-string/3-truncate/_js.view/test.js
Ilya Kantor 2b874a73be ok
2016-03-09 00:16:22 +03:00

16 lines
No EOL
392 B
JavaScript

describe("truncate", function() {
it("truncate the long string to the given lenth (including the ellipsis)", function() {
assert.equal(
truncate("What I'd like to tell on this topic is:", 20),
"What I'd like to te…"
);
});
it("doesn't change short strings", function() {
assert.equal(
truncate("Hi everyone!", 20),
"Hi everyone!"
);
});
});