()
| 154 | parts`abc${1 + 2 + 3}def${4 + 5 + 6}`, |
| 155 | ); |
| 156 | const getName = () => 'World'; |
| 157 | expect(doTranslate(translations, parts`Hello, ${getName()}!`)).toEqual( |
| 158 | parts`Hello, ${'World'}!`, |
| 159 | ); |
no outgoing calls
no test coverage detected
searching dependent graphs…