Skip to content
Snippets Groups Projects
Commit f9208592 authored by Cam Saul's avatar Cam Saul
Browse files

Make sure MetabaseUtils.isEmpty() disallows blank strings

parent 94595879
No related branches found
No related tags found
No related merge requests found
......@@ -37,7 +37,7 @@ var MetabaseUtils = {
},
isEmpty: function(str) {
return (str == null || 0 === str.length);
return (str == null || 0 === str.length || str.match(/^\s+$/));
},
// pretty limited. just does 0-9 for right now.
......
......@@ -71,7 +71,13 @@ describe('utils', () => {
shuffle(shuffled);
shuffled.sort(MetabaseUtils.compareVersions);
expect(shuffled).toEqual(expected);
})
});
});
describe("isEmpty" () => {
it("should not allow all-blank strings", () => {
expect(MetabaseUtils.isEmpty(" ")).toEqual(true);
});
})
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment