(word, abbr)
| 3 | const expectPositive = (word, abbr) => |
| 4 | expect(isAbbreviation(word, abbr)).toBe(true) |
| 5 | const expectNegative = (word, abbr) => |
| 6 | expect(isAbbreviation(word, abbr)).toBe(false) |
| 7 | |
| 8 | describe('Abbreviation - Positive Tests', () => { |
| 9 | test('it should correctly abbreviate or transform the source string to match the target string', () => { |
no test coverage detected