()
| 239 | |
| 240 | it('does not consider the token to be a replacement if it is part of a string with an escaped backslash followed by a backslash escaped quote', () => { |
| 241 | const test = () => |
| 242 | injectReplacements( |
| 243 | "SELECT * FROM users WHERE id = '\\\\\\' :id' OR id = :id", |
| 244 | dialect, |
| 245 | { id: 1 } |
| 246 | ); |
| 247 | |
| 248 | expectPerDialect(test, { |
| 249 | default: |
nothing calls this directly
no test coverage detected