9 lines
271 B
JavaScript
9 lines
271 B
JavaScript
describe("app.helpers.truncate", function() {
|
|
it("handles null values", function() {
|
|
expect(app.helpers.truncate(null, 123)).toEqual(null);
|
|
});
|
|
|
|
it("handles undefined", function() {
|
|
expect(app.helpers.truncate(undefined, 123)).toEqual(undefined);
|
|
});
|
|
});
|