« get me outta code hell

test: tidy & add descriptions for existing snapshot tests - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/test
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2023-04-04 13:44:07 -0300
committer(quasar) nebula <qznebula@protonmail.com>2023-04-04 13:47:47 -0300
commit762be9d8078a2fd19a460b7172129a9575974f1f (patch)
treec74fe2403e824cc4f9243cb464f800cb0ac81fa0 /test
parent21b6f42b31c39bfc3ee20788d7d055d7afdb5c21 (diff)
test: tidy & add descriptions for existing snapshot tests
Diffstat (limited to 'test')
-rw-r--r--test/snapshot/generateContributionLinks.js8
-rw-r--r--test/snapshot/linkArtist.js6
-rw-r--r--test/snapshot/linkExternalFlash.js31
-rw-r--r--test/snapshot/linkTemplate.js6
4 files changed, 22 insertions, 29 deletions
diff --git a/test/snapshot/generateContributionLinks.js b/test/snapshot/generateContributionLinks.js
index 10d225c..deecf9e 100644
--- a/test/snapshot/generateContributionLinks.js
+++ b/test/snapshot/generateContributionLinks.js
@@ -28,22 +28,22 @@ testContentFunctions(t, 'generateContributionLinks (snapshot)', async (t, evalua
 
   await evaluate.load();
 
-  evaluate.snapshot({
+  evaluate.snapshot('showContribution & showIcons', {
     name: 'generateContributionLinks',
     args: [contributions, {showContribution: true, showIcons: true}],
   });
 
-  evaluate.snapshot({
+  evaluate.snapshot('only showContribution', {
     name: 'generateContributionLinks',
     args: [contributions, {showContribution: true, showIcons: false}],
   });
 
-  evaluate.snapshot({
+  evaluate.snapshot('only showIcons', {
     name: 'generateContributionLinks',
     args: [contributions, {showContribution: false, showIcons: true}],
   });
 
-  evaluate.snapshot({
+  evaluate.snapshot('no accents', {
     name: 'generateContributionLinks',
     args: [contributions, {showContribution: false, showIcons: false}],
   });
diff --git a/test/snapshot/linkArtist.js b/test/snapshot/linkArtist.js
index 633e2ae..e479ece 100644
--- a/test/snapshot/linkArtist.js
+++ b/test/snapshot/linkArtist.js
@@ -1,10 +1,10 @@
 import t from 'tap';
 import {testContentFunctions} from '../lib/content-function.js';
 
-testContentFunctions(t, 'linkArtist', async (t, evaluate) => {
+testContentFunctions(t, 'linkArtist (snapshot)', async (t, evaluate) => {
   await evaluate.load();
 
-  evaluate.snapshot({
+  evaluate.snapshot('basic behavior', {
     name: 'linkArtist',
     args: [
       {
@@ -14,7 +14,7 @@ testContentFunctions(t, 'linkArtist', async (t, evaluate) => {
     ],
   });
 
-  evaluate.snapshot({
+  evaluate.snapshot('prefer short name', {
     name: 'linkArtist',
     args: [
       {
diff --git a/test/snapshot/linkExternalFlash.js b/test/snapshot/linkExternalFlash.js
index 3f63760..7bb86c6 100644
--- a/test/snapshot/linkExternalFlash.js
+++ b/test/snapshot/linkExternalFlash.js
@@ -4,28 +4,21 @@ import {testContentFunctions} from '../lib/content-function.js';
 testContentFunctions(t, 'linkExternalFlash (snapshot)', async (t, evaluate) => {
   await evaluate.load();
 
-  evaluate.snapshot({
+  evaluate.snapshot('basic behavior', {
     name: 'linkExternalFlash',
-    args: ['https://homestuck.com/story/4109/', {page: '4109'}],
+    multiple: [
+      {args: ['https://homestuck.com/story/4109/', {page: '4109'}]},
+      {args: ['https://youtu.be/FDt-SLyEcjI', {page: '4109'}]},
+      {args: ['https://www.bgreco.net/hsflash/006009.html', {page: '4109'}]},
+      {args: ['https://www.newgrounds.com/portal/view/582345', {page: '4109'}]},
+    ],
   });
 
-  evaluate.snapshot({
+  evaluate.snapshot('secret page', {
     name: 'linkExternalFlash',
-    args: ['https://homestuck.com/story/pony/', {page: 'pony'}],
+    multiple: [
+      {args: ['https://homestuck.com/story/pony/', {page: 'pony'}]},
+      {args: ['https://youtu.be/USB1pj6hAjU', {page: 'pony'}]},
+    ],
   });
-
-  evaluate.snapshot({
-    name: 'linkExternalFlash',
-    args: ['https://youtu.be/FDt-SLyEcjI', {page: '4109'}],
-  });
-
-  evaluate.snapshot({
-    name: 'linkExternalFlash',
-    args: ['https://www.bgreco.net/hsflash/006009.html', {page: '4109'}],
-  });
-
-  evaluate.snapshot({
-    name: 'linkExternalFlash',
-    args: ['https://www.newgrounds.com/portal/view/582345', {page: '4109'}],
-  })
 });
diff --git a/test/snapshot/linkTemplate.js b/test/snapshot/linkTemplate.js
index 1032189..07c3b50 100644
--- a/test/snapshot/linkTemplate.js
+++ b/test/snapshot/linkTemplate.js
@@ -1,10 +1,10 @@
 import t from 'tap';
 import {testContentFunctions} from '../lib/content-function.js';
 
-testContentFunctions(t, 'linkTemplate', async (t, evaluate) => {
+testContentFunctions(t, 'linkTemplate (snapshot)', async (t, evaluate) => {
   await evaluate.load();
 
-  evaluate.snapshot({
+  evaluate.snapshot('fill many slots', {
     name: 'linkTemplate',
     extraDependencies: {
       getColors: c => ({primary: c + 'ff', dim: c + '77'}),
@@ -17,7 +17,7 @@ testContentFunctions(t, 'linkTemplate', async (t, evaluate) => {
       .slot('attributes', {class: 'dog', id: 'cat1'})
       .slot('content', 'My Cool Link'));
 
-  evaluate.snapshot({
+  evaluate.snapshot('fill path slot', {
     name: 'linkTemplate',
     extraDependencies: {
       to: (...path) => '/c*lzone/' + path.join('/') + '/',