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 672421a commit 726cdc7Copy full SHA for 726cdc7
tests/Scripting/Includes.test.ts
@@ -0,0 +1,11 @@
1
+import { Query } from '../../src/Query/Query';
2
+import { TasksFile } from '../../src/Scripting/TasksFile';
3
+
4
+describe('include tests', () => {
5
+ it.failing('should accept whole-line include placeholder', () => {
6
+ const source = '{{include.not_done}}';
7
+ const query = new Query(source, new TasksFile('stuff.md'));
8
9
+ expect(query.error).toBeUndefined();
10
+ });
11
+});
0 commit comments