| Level Navigation: 1 | (2ℹ️) | 3 | 4 | 5 | 6 | (7ℹ️) | (8ℹ️) | (9ℹ️) | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | (37ℹ️) | 38⚡ | 39⚡ | 40⚡ | 41⚡ | 42 | 43⚡ | 44⚡ | 45 | 46 | (47ℹ️) |
Let’s test with a very long sentence:
Plan: validate long strings stay consistent by mapping "This Is A Very Long Sentence With Many Words" to the expected snake case version.
it('should handle very long text', () => {
const result = toSnakeCase('This Is A Very Long Sentence With Many Words');
expect(result).toBe('this_is_a_very_long_sentence_with_many_words');
});
Try it: Add this test and see if it handles long text correctly!