@qntm-code/utils
Version:
A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.
9 lines (8 loc) • 334 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const kebab_to_pascal_1 = require("./kebab-to-pascal");
describe('kebabToPascal', () => {
it('should convert a kebab-case string to PascalCase', () => {
expect((0, kebab_to_pascal_1.kebabToPascal)('test-string')).toBe('TestString');
});
});