(actual: string, expected: string)
| 112 | |
| 113 | describe('delimiter special characters', () => { |
| 114 | async function x(actual: string, expected: string) { |
| 115 | await assertEqual( |
| 116 | actual, |
| 117 | String.raw`x1.z IS NOT NULL`, |
| 118 | { x1: String.raw`(noteValueFts.normalized GLOB '${expected}')` }, |
| 119 | 1, |
| 120 | ) |
| 121 | } |
| 122 | test('normal', async () => { |
| 123 | await x( |
| 124 | String.raw`"foo"`, // |
no test coverage detected