Skip to content

Commit 3aee643

Browse files
committed
test: . Sort lines by key, for readability
1 parent ce7a0e3 commit 3aee643

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

tests/Layout/QueryLayoutOptions.test.ts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ describe('parsing query show/hide layout options', () => {
77
}
88

99
const testCases: [string, keyof QueryLayoutOptions, boolean][] = [
10-
['tree', 'hideTree', true],
11-
['task count', 'hideTaskCount', false],
10+
// Alphabetical order
1211
['backlink', 'hideBacklinks', false],
13-
['postpone button', 'hidePostponeButton', false],
1412
['edit button', 'hideEditButton', false],
13+
['postpone button', 'hidePostponeButton', false],
14+
['task count', 'hideTaskCount', false],
15+
['tree', 'hideTree', true],
1516
['urgency', 'hideUrgency', true],
1617
];
1718

0 commit comments

Comments
 (0)