We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34ed20c commit 3ce58c8Copy full SHA for 3ce58c8
tests/Query/Explain/Explainer.test.ts
@@ -273,6 +273,9 @@ describe('explain sorters', () => {
273
it('should explain "sort by" options', () => {
274
const source = 'sort by due\nsort by priority()';
275
const query = new Query(source);
276
+ // This shows the accidental presence of stray () characters after 'sort by priority'.
277
+ // They are not *required* in the explanation, but are retained here to help in user support
278
+ // when I ask users to supply an explanation of their query.
279
expect(explainer.explainSorters(query)).toMatchInlineSnapshot(`
280
"sort by due
281
0 commit comments