Skip to content

Commit

Permalink
add Reduce Indentation test case (not passing)
Browse files Browse the repository at this point in the history
  • Loading branch information
oakmac committed Mar 9, 2024
1 parent 9be41d1 commit b536b75
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion test/format.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ certainTests.add('Reader conditional splicing syntax')

const ignoreSomeTests = true
const ignoreTests = new Set()
// ignoreTests.add('Inner indentation')
ignoreTests.add('Reduce Indentation')
ignoreTests.add('Rule 3 Indentation')

allTestCases.forEach(testCase => {
Expand Down
16 changes: 16 additions & 0 deletions test_format/format.eno
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,22 @@
(ccc)))
--Expected

# Reduce Indentation

--Input
(aaa)
(bbb)

(ccc)
--Input

--Expected
(aaa)
(bbb)

(ccc)
--Expected

# Close Wrapping Parens

--Input
Expand Down

0 comments on commit b536b75

Please sign in to comment.