File size: 294 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
import { escapeApplescriptStringFragment } from './launch-editor'
describe('applescript string escaping', () => {
it('should escape strings correctly', () => {
const result = escapeApplescriptStringFragment(`abc\\def"ghi\\\\`)
expect(result).toBe(`abc\\\\def\\"ghi\\\\\\\\`)
})
})
|