« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--coverage-map.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/coverage-map.js b/coverage-map.js
index beff9e8a..b3b0c83f 100644
--- a/coverage-map.js
+++ b/coverage-map.js
@@ -4,18 +4,6 @@
 export default function map(F) {
   let match;
 
-  // unit/content/...
-
-  match = F.match(/^test\/unit\/content\/(.*)$/);
-  if (match) {
-    const f = match[1];
-
-    match = f.match(/^dependencies\/(.*)\.js$/);
-    if (match) {
-      return `src/content/dependencies/${match[1]}.js`;
-    }
-  }
-
   // unit/data/...
 
   match = F.match(/^test\/unit\/data\/(.*)$/);
@@ -55,17 +43,5 @@ export default function map(F) {
     }
   }
 
-  // snapshot/...
-
-  match = F.match(/^test\/snapshot\/(.*)$/);
-  if (match) {
-    const f = match[1];
-
-    match = f.match(/^(.*)\.js$/);
-    if (match) {
-      return `src/content/dependencies/${match[1]}.js`;
-    }
-  }
-
   return null;
 }