diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-10-15 14:27:29 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-10-15 14:27:29 -0300 |
commit | 1aa217195f4d5f82653e29d6c265f92c2d1bbd7e (patch) | |
tree | 98511aa6b51bdc5cbc4c31ddcf144f03bf2b8422 /test/snapshot/generateBanner.js | |
parent | 643797e6a2dcf4c39117e6ef99d9c8672e2d2511 (diff) |
test: remove all existing snapshot tests
Deliberately keeping evaluate.snapshot() for possible future use. There are also these folders which were seemingly never included in the working tree: test/snapshot/complete test/snapshot/isolated test/snapshot/mixed If and when we come back to snasphot tests, maybe we'll bounce off of that idea shaped out of three words.
Diffstat (limited to 'test/snapshot/generateBanner.js')
-rw-r--r-- | test/snapshot/generateBanner.js | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/test/snapshot/generateBanner.js b/test/snapshot/generateBanner.js deleted file mode 100644 index ab57c3cc..00000000 --- a/test/snapshot/generateBanner.js +++ /dev/null @@ -1,22 +0,0 @@ -import t from 'tap'; -import {testContentFunctions} from '#test-lib'; - -testContentFunctions(t, 'generateBanner (snapshot)', async (t, evaluate) => { - await evaluate.load(); - - evaluate.snapshot('basic behavior', { - name: 'generateBanner', - slots: { - path: ['media.albumBanner', 'cool-album', 'png'], - alt: 'Very cool banner art.', - dimensions: [800, 200], - }, - }); - - evaluate.snapshot('no dimensions', { - name: 'generateBanner', - slots: { - path: ['media.albumBanner', 'cool-album', 'png'], - }, - }); -}); |