Created
November 27, 2025 14:46
-
-
Save Klerith/c6902b39f771d3ff875f966d64a123bf to your computer and use it in GitHub Desktop.
Pruebas en ls servicios con señales
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| it('should be created', () => { | |
| // todo: | |
| }); | |
| it('should be created with default values', () => { | |
| // todo: | |
| }); | |
| it('should set resultText, subResultText to "0" when C is pressed', () => { | |
| // todo: | |
| }); | |
| it('should update resultText with number input', () => { | |
| // todo: | |
| }); | |
| it('should handle operators correctly', () => { | |
| // todo: | |
| }); | |
| it('should calculate result correctly for addition', () => { | |
| // todo: | |
| }); | |
| it('should calculate result correctly for subtraction', () => { | |
| // todo: | |
| }); | |
| it('should calculate result correctly for multiplication', () => { | |
| // todo: | |
| }); | |
| it('should calculate result correctly for division', () => { | |
| // todo: | |
| }); | |
| it('should handle decimal point correctly', () => { | |
| // todo: | |
| }); | |
| it('should handle decimal point starting with 0', () => { | |
| // todo: | |
| }); | |
| it('should handle sign change +/-', () => { | |
| // todo: | |
| }); | |
| it('should handle backspace', () => { | |
| // todo: | |
| }); | |
| it('should handle backspace with negative numbers', () => { | |
| // todo: | |
| }); | |
| it('should handle max length', () => { | |
| // todo: | |
| }); | |
| it('should handle invalid input', () => { | |
| // todo: | |
| }); | |
| it('should handle negative zero input correctly', () => { | |
| // todo: | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment