Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit 739a1df

Browse files
committed
don't run roundtrip tests if ppx is defined
1 parent e84640a commit 739a1df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/runner.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ Make sure the test input is syntactically valid.`;
225225
expect(result).toMatchSnapshot();
226226
}
227227

228-
if (process.env.ROUNDTRIP_TEST) {
228+
if (process.env.ROUNDTRIP_TEST && ppx === "none") {
229229
let intf = isInterface(filename);
230230
let sexpAst = parseFileToSexp(filename);
231231
let result2 = parseNapkinStdinToNapkin(result, intf, 80);

0 commit comments

Comments
 (0)