Files
lucide/packages/shared/tests/toPascalCase.spec.ts
Eric Fennis b6ed43d48c feat(packages): Added aria-hidden fallback for decorative icons to all packages (#3604)
* Add aria hidden to lucide package

* Add aria-hidden to astro package

* Add tests for shared package

* Fix test for props

* add aria prop to lucide-solid

* Add aria-hidden to lucide-vue-next

* Add aria-hidden prop to angular package

* Fix builds

* Add notice about aria-label in docs

* Format code

* Update packages/svelte/tests/Icon.spec.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update packages/lucide-svelte/tests/Icon.spec.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Update packages/shared/src/utils/hasA11yProp.ts

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>

* Adjusted docs

* Fix import

* update tests

* test(shared): fix hasA11yProp unit test

* fix(packages/lucide-angular): fix hasA11yProp import path (non-relative import path will not get properly resolved by ng-packagr)

* Format code

* Adjust aria props to root element

* Format code

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Karsa <contact@karsa.org>
2026-01-20 15:55:02 +01:00

37 lines
1.1 KiB
TypeScript

import { describe, it, expect } from 'vitest';
import { toPascalCase } from '../src/utils/toPascalCase';
describe('toPascalCase', () => {
it('should convert kebab-case to PascalCase', () => {
expect(toPascalCase('hello-world')).toBe('HelloWorld');
});
it('should convert snake_case to PascalCase', () => {
expect(toPascalCase('hello_world')).toBe('HelloWorld');
});
it('should convert camelCase to PascalCase', () => {
expect(toPascalCase('helloWorld')).toBe('HelloWorld');
});
it('should convert already PascalCase to PascalCase', () => {
expect(toPascalCase('HelloWorld')).toBe('HelloWorld');
});
it('should handle single word', () => {
expect(toPascalCase('hello')).toBe('Hello');
});
it('should handle empty string', () => {
expect(toPascalCase('')).toBe('');
});
it('should handle strings with multiple delimiters', () => {
expect(toPascalCase('hello-world_test')).toBe('HelloWorldTest');
});
it('should handle strings with spaces', () => {
expect(toPascalCase('hello world')).toBe('HelloWorld');
});
});