typescript icon indicating copy to clipboard operation
typescript copied to clipboard

Exercism exercises in TypeScript.

Results 129 typescript issues
Sort by recently updated
recently updated
newest added

I believe is missing a test case for the problem [luhn](https://github.com/exercism/typescript/tree/main/exercises/practice/luhn)/luhn.test.ts There isn't a test case that covers a valid strings of length 2 without spaces.

According with the instructions: _Other than the apostrophe in a contraction all forms of punctuation are ignored_ But for example in test: ```typescript it('includes punctuation', () => { const expectedCounts...

## Issue The top-ranked solutions for 'Robot Name' in Typescript are currently passing all unit tests even though (and primarily because) they are generating names that **_do not conform_** to...

`word-count` exercise [instructions](https://github.com/exercism/typescript/blob/main/exercises/practice/word-count/.docs/instructions.md) specify word as a: >For the purposes of this exercise you can expect that a word will always be one of: >1. A number composed of one...

The Collatz Conjecture holds only for positive integers. TypeScript does not have an integer type and therefore the input must be explicitly tested. Changes: - Adds a test case for...

Reactive programming (in typescript using the rxjs.js module) brings so much to the table vis typescript dev. and is such a novel way of working with the language that this...

I'll implement https://github.com/exercism/problem-specifications/tree/main/exercises/forth

Caveat: I'm not sure whether I'm observing intended behaviour or not. It could be a "It Works On My Machine" kind of problem - perhaps it is not. The symptoms...