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 7e4ae91 commit 59aef9dCopy full SHA for 59aef9d
tests/Scripting/Includes.test.ts
@@ -1,7 +1,11 @@
1
-import { getSettings } from '../../src/Config/Settings';
+import { getSettings, resetSettings } from '../../src/Config/Settings';
2
import { Query } from '../../src/Query/Query';
3
import { TasksFile } from '../../src/Scripting/TasksFile';
4
5
+afterEach(() => {
6
+ resetSettings();
7
+});
8
+
9
describe('include tests', () => {
10
it('should accept whole-line include placeholder', () => {
11
const source = '{{include.not_done}}';
0 commit comments