decojs
Version:
Scalable frontend architecture
14 lines (12 loc) • 365 B
JavaScript
describe("when calling endsWith", [
"deco/utils"
], function(
utils
){
it("should return true when the last character matches the test", function(){
expect(utils.endsWith("abcd", 'd')).toBe(true);
});
it("should return false when the last character does not match the test", function(){
expect(utils.endsWith("abcd", 'b')).toBe(false);
});
});