diff options
Diffstat (limited to 'test/test-options-util.js')
| -rw-r--r-- | test/test-options-util.js | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/test/test-options-util.js b/test/test-options-util.js index 8b65f134..7e11aad1 100644 --- a/test/test-options-util.js +++ b/test/test-options-util.js @@ -641,6 +641,7 @@ async function testFieldTemplatesUpdate(extDir) {      const update6 = loadDataFile('data/templates/anki-field-templates-upgrade-v6.handlebars');      const update8 = loadDataFile('data/templates/anki-field-templates-upgrade-v8.handlebars');      const update10 = loadDataFile('data/templates/anki-field-templates-upgrade-v10.handlebars'); +    const update12 = loadDataFile('data/templates/anki-field-templates-upgrade-v12.handlebars');      const data = [          // Standard format @@ -662,6 +663,7 @@ ${update4}  ${update6}  ${update8}  ${update10} +${update12}  {{~> (lookup . "marker") ~}}`.trimStart()          },          // Non-standard marker format @@ -683,7 +685,8 @@ ${update2}  ${update4}  ${update6}  ${update8} -${update10}`.trimStart() +${update10} +${update12}`.trimStart()          },          // Empty test          { @@ -696,6 +699,7 @@ ${update4}  ${update6}  ${update8}  ${update10} +${update12}  {{~> (lookup . "marker") ~}}`.trimStart()          },          // Definition tags update @@ -770,6 +774,7 @@ ${update4}  ${update6}  ${update8}  ${update10} +${update12}  {{~> (lookup . "marker") ~}}  `.trimStart()          }, @@ -911,6 +916,7 @@ ${update10}  ${update8}  ${update10} +${update12}  {{~> (lookup . "marker") ~}}`.trimStart()          }      ]; |