Skip to content
Extraits de code Groupes Projets
truncate_spec.js 271 octets
Newer Older
  • Learn to ignore specific revisions
  • 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);
      });
    });