diff options
Diffstat (limited to 'test/snapshot/linkTemplate.js')
-rw-r--r-- | test/snapshot/linkTemplate.js | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/test/snapshot/linkTemplate.js b/test/snapshot/linkTemplate.js index e9a1ccd6..bef0935c 100644 --- a/test/snapshot/linkTemplate.js +++ b/test/snapshot/linkTemplate.js @@ -11,12 +11,13 @@ testContentFunctions(t, 'linkTemplate (snapshot)', async (t, evaluate) => { getColors: c => ({primary: c + 'ff', dim: c + '77'}), }, - postprocess: 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'), + slots: { + 'color': '#123456', + 'href': 'https://hsmusic.wiki/media/cool file.pdf', + 'hash': 'fooey', + 'attributes': {class: 'dog', id: 'cat1'}, + 'content': 'My Cool Link', + }, }); evaluate.snapshot('fill path slot & provide appendIndexHTML', { @@ -27,7 +28,8 @@ testContentFunctions(t, 'linkTemplate (snapshot)', async (t, evaluate) => { appendIndexHTML: true, }, - postprocess: v => v - .slot('path', ['myCoolPath', 'ham', 'pineapple', 'tomato']), + slots: { + path: ['myCoolPath', 'ham', 'pineapple', 'tomato'], + }, }); }); |