diff options
Diffstat (limited to 'test/snapshots/linkTemplate.js')
-rw-r--r-- | test/snapshots/linkTemplate.js | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/test/snapshots/linkTemplate.js b/test/snapshots/linkTemplate.js deleted file mode 100644 index 0dcf5b61..00000000 --- a/test/snapshots/linkTemplate.js +++ /dev/null @@ -1,28 +0,0 @@ -import t from 'tap'; - -import {testContentFunctions} from './_support.js'; - -testContentFunctions(t, 'linkTemplate', (t, evaluate) => { - evaluate.snapshot({ - name: 'linkTemplate', - extraDependencies: { - getColors: c => ({primary: c + 'ff', dim: c + '77'}), - }, - }, - v => v - .slot('color', '#123456') - .slot('href', 'https://hsmusic.wiki/media/cool file.pdf') - .slot('hash', 'fooey') - .slot('attributes', {class: 'dog', id: 'cat1'}) - .slot('content', 'My Cool Link')); - - evaluate.snapshot({ - name: 'linkTemplate', - extraDependencies: { - to: (...path) => '/c*lzone/' + path.join('/') + '/', - appendIndexHTML: true, - }, - }, - v => v - .slot('path', ['myCoolPath', 'ham', 'pineapple', 'tomato'])); -}); |