We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 330ee3d commit 85d2483Copy full SHA for 85d2483
1 file changed
packages/algebra-transformer-1-1/test/algebra.test.ts
@@ -35,7 +35,7 @@ describe('algebra output', () => {
35
return;
36
}
37
it(`${name}${blankToVariable ? ' (no blanks)' : ''}`, ({ expect }) => {
38
- const query = fs.readFileSync(fullTestPath, 'utf8');
+ const query = fs.readFileSync(fullTestPath, 'utf8').replaceAll(/\r?\n/gu, '\n');
39
const ast = parser.parse(query);
40
const algebra = LibUtil.objectify(
41
translate(ast, {
0 commit comments