« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/test/lib
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/content-function.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/lib/content-function.js b/test/lib/content-function.js
index b6177e4..692d510 100644
--- a/test/lib/content-function.js
+++ b/test/lib/content-function.js
@@ -70,17 +70,13 @@ export function testContentFunctions(t, message, fn) {
         throw new Error(`Await .load() before performing tests`);
       }
 
-      const [description, opts, fn] =
+      const [description, opts] =
         (typeof args[0] === 'string'
           ? args
           : ['output', ...args]);
 
       let result = evaluate(opts);
 
-      if (fn) {
-        result = fn(result);
-      }
-
       if (opts.multiple) {
         result = result.map(item => item.toString()).join('\n');
       } else {