(word, abbr)
| 1 | import { isAbbreviation } from '../Abbreviation.js' |
| 2 | |
| 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 |
no test coverage detected