diff --git a/package.json b/package.json
index 0a5c233c..00a3417e 100644
--- a/package.json
+++ b/package.json
@@ -42,6 +42,7 @@
},
"lint-staged": {
"*.js": [
+ "prettier --trailing-comma es5 --no-semi --single-quote --write",
"eslint --fix",
"git add"
]
diff --git a/scripts/devicon.js b/scripts/devicon.js
index 56f9c2d0..032e25c5 100644
--- a/scripts/devicon.js
+++ b/scripts/devicon.js
@@ -1,16 +1,6 @@
const path = require('path')
const fs = require('fs-extra')
-const getDeviconPath = function() {
- try {
- return path.dirname(require.resolve('devicon-2.2'))
- } catch (e) {
- throw e
- }
-}
-
-module.exports.getDeviconPath = getDeviconPath
-
module.exports.getDeviconManifestFile = function() {
return new Promise((resolve, reject) => {
const iconsManifestFile = path.resolve(
diff --git a/scripts/generateComponents.js b/scripts/generateComponents.js
index fba190ea..101b9295 100644
--- a/scripts/generateComponents.js
+++ b/scripts/generateComponents.js
@@ -2,8 +2,11 @@ const fs = require('fs-extra')
const path = require('path')
const paths = require('../config/paths')
const judex = require('judex-component-generator')
+const chalk = require('chalk')
const pascalCase = require('pascal-case')
-const { getDeviconPath, getDeviconManifestFile } = require('./devicon')
+const log = console.log
+
+const { getDeviconManifestFile } = require('./devicon')
const SVGO = require('svgo')
// global
@@ -29,6 +32,8 @@ function generateIconComponent(iconName, iconVersion) {
const svgFileName = `${iconName}-${iconVersion}.svg`
const svgFilePath = path.resolve(deviconPath, 'icons', iconName, svgFileName)
+ log(chalk.blue(`Generating Component ${componentName}...`))
+
return new Promise((resolve, reject) => {
generator
.generate(`${iconName}/${iconVersion}/${componentName}`, {
@@ -53,10 +58,22 @@ function generateIconComponent(iconName, iconVersion) {
iconVersion
)
})
+ .then(() =>
+ log(
+ chalk.green(
+ `Component ${componentName} written to ${componentPaths.root}`
+ )
+ )
+ )
.then(() => fs.readdir(componentPaths.root))
.then(dirContents => resolve(dirContents))
})
.on('error', error => {
+ log(
+ chalk.red(
+ `There was an error trying to generate component ${componentName}`
+ )
+ )
reject(error)
})
})
@@ -92,18 +109,29 @@ function optimizeSVG(data) {
})
}
+// latest devicon package was (for some reason?) released in a separate NPM package named devicon-2.2
+const deviconPackageName = 'devicon-2.2'
// Check if devicon package is installed locally
// If not, abort the script
try {
- deviconPath = getDeviconPath()
+ deviconPath = path.dirname(require.resolve(deviconPackageName))
} catch (e) {
- console.error('Package "devicon" was not found in node_modules.')
- console.error(
- 'Please install using "yarn add devicon" or "npm install devicon --save"'
+ log(
+ chalk.red(`Package "${deviconPackageName}" was not found in node_modules`)
+ )
+
+ log(
+ chalk.red(
+ `Please install using "yarn add ${deviconPackageName} --dev" or "npm install ${deviconPackageName} --save-dev"`
+ )
)
+
process.exit(e.code)
}
+// Start generating components
+log(chalk.blue(`Starting component generations script...`))
+
fs
.outputFile(componentsIndex, '')
.then(() => {
@@ -114,9 +142,19 @@ fs
.then(() => getDeviconManifestFile())
.then(fs.readJson)
.then(generateComponents)
+ .then(dirContents => {
+ return log(
+ chalk.yellow(
+ `Generated ${dirContents.length} components into ${paths.components}`
+ )
+ )
+ })
.then(() => {
return indexFileWriteStream.end()
})
+ .then(() => {
+ log(chalk.yellow(`Components index file written to ${componentsIndex}`))
+ })
.catch(err => {
process.exit(err.code)
})
diff --git a/src/components/amazonwebservices/original-wordmark/__tests__/__snapshots__/AmazonwebservicesOriginalWordmark.test.js.snap b/src/components/amazonwebservices/original-wordmark/__tests__/__snapshots__/AmazonwebservicesOriginalWordmark.test.js.snap
deleted file mode 100644
index 2da2af16..00000000
--- a/src/components/amazonwebservices/original-wordmark/__tests__/__snapshots__/AmazonwebservicesOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/amazonwebservices/original/__tests__/__snapshots__/AmazonwebservicesOriginal.test.js.snap b/src/components/amazonwebservices/original/__tests__/__snapshots__/AmazonwebservicesOriginal.test.js.snap
deleted file mode 100644
index a8ff5b35..00000000
--- a/src/components/amazonwebservices/original/__tests__/__snapshots__/AmazonwebservicesOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/amazonwebservices/plain-wordmark/__tests__/__snapshots__/AmazonwebservicesPlainWordmark.test.js.snap b/src/components/amazonwebservices/plain-wordmark/__tests__/__snapshots__/AmazonwebservicesPlainWordmark.test.js.snap
deleted file mode 100644
index 6684157c..00000000
--- a/src/components/amazonwebservices/plain-wordmark/__tests__/__snapshots__/AmazonwebservicesPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/android/original-wordmark/__tests__/__snapshots__/AndroidOriginalWordmark.test.js.snap b/src/components/android/original-wordmark/__tests__/__snapshots__/AndroidOriginalWordmark.test.js.snap
deleted file mode 100644
index d281010d..00000000
--- a/src/components/android/original-wordmark/__tests__/__snapshots__/AndroidOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/android/original/__tests__/__snapshots__/AndroidOriginal.test.js.snap b/src/components/android/original/__tests__/__snapshots__/AndroidOriginal.test.js.snap
deleted file mode 100644
index daff4acd..00000000
--- a/src/components/android/original/__tests__/__snapshots__/AndroidOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/android/plain-wordmark/__tests__/__snapshots__/AndroidPlainWordmark.test.js.snap b/src/components/android/plain-wordmark/__tests__/__snapshots__/AndroidPlainWordmark.test.js.snap
deleted file mode 100644
index f4147195..00000000
--- a/src/components/android/plain-wordmark/__tests__/__snapshots__/AndroidPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/android/plain/__tests__/__snapshots__/AndroidPlain.test.js.snap b/src/components/android/plain/__tests__/__snapshots__/AndroidPlain.test.js.snap
deleted file mode 100644
index 71f79453..00000000
--- a/src/components/android/plain/__tests__/__snapshots__/AndroidPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/angularjs/original-wordmark/__tests__/__snapshots__/AngularjsOriginalWordmark.test.js.snap b/src/components/angularjs/original-wordmark/__tests__/__snapshots__/AngularjsOriginalWordmark.test.js.snap
deleted file mode 100644
index 0910c1ed..00000000
--- a/src/components/angularjs/original-wordmark/__tests__/__snapshots__/AngularjsOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/angularjs/original/__tests__/__snapshots__/AngularjsOriginal.test.js.snap b/src/components/angularjs/original/__tests__/__snapshots__/AngularjsOriginal.test.js.snap
deleted file mode 100644
index 4ff4e868..00000000
--- a/src/components/angularjs/original/__tests__/__snapshots__/AngularjsOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/angularjs/plain-wordmark/__tests__/__snapshots__/AngularjsPlainWordmark.test.js.snap b/src/components/angularjs/plain-wordmark/__tests__/__snapshots__/AngularjsPlainWordmark.test.js.snap
deleted file mode 100644
index cab74794..00000000
--- a/src/components/angularjs/plain-wordmark/__tests__/__snapshots__/AngularjsPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/angularjs/plain/__tests__/__snapshots__/AngularjsPlain.test.js.snap b/src/components/angularjs/plain/__tests__/__snapshots__/AngularjsPlain.test.js.snap
deleted file mode 100644
index a83a2171..00000000
--- a/src/components/angularjs/plain/__tests__/__snapshots__/AngularjsPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/apache/line-wordmark/__tests__/__snapshots__/ApacheLineWordmark.test.js.snap b/src/components/apache/line-wordmark/__tests__/__snapshots__/ApacheLineWordmark.test.js.snap
deleted file mode 100644
index 0e841c4a..00000000
--- a/src/components/apache/line-wordmark/__tests__/__snapshots__/ApacheLineWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/apache/line/__tests__/__snapshots__/ApacheLine.test.js.snap b/src/components/apache/line/__tests__/__snapshots__/ApacheLine.test.js.snap
deleted file mode 100644
index 390a9196..00000000
--- a/src/components/apache/line/__tests__/__snapshots__/ApacheLine.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/apache/original-wordmark/__tests__/__snapshots__/ApacheOriginalWordmark.test.js.snap b/src/components/apache/original-wordmark/__tests__/__snapshots__/ApacheOriginalWordmark.test.js.snap
deleted file mode 100644
index b54ab8a3..00000000
--- a/src/components/apache/original-wordmark/__tests__/__snapshots__/ApacheOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/apache/original/__tests__/__snapshots__/ApacheOriginal.test.js.snap b/src/components/apache/original/__tests__/__snapshots__/ApacheOriginal.test.js.snap
deleted file mode 100644
index 9a8b067f..00000000
--- a/src/components/apache/original/__tests__/__snapshots__/ApacheOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/apache/plain-wordmark/__tests__/__snapshots__/ApachePlainWordmark.test.js.snap b/src/components/apache/plain-wordmark/__tests__/__snapshots__/ApachePlainWordmark.test.js.snap
deleted file mode 100644
index c53164a8..00000000
--- a/src/components/apache/plain-wordmark/__tests__/__snapshots__/ApachePlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/apache/plain/__tests__/__snapshots__/ApachePlain.test.js.snap b/src/components/apache/plain/__tests__/__snapshots__/ApachePlain.test.js.snap
deleted file mode 100644
index 2f920d84..00000000
--- a/src/components/apache/plain/__tests__/__snapshots__/ApachePlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/appcelerator/original-wordmark/__tests__/__snapshots__/AppceleratorOriginalWordmark.test.js.snap b/src/components/appcelerator/original-wordmark/__tests__/__snapshots__/AppceleratorOriginalWordmark.test.js.snap
deleted file mode 100644
index 95297db1..00000000
--- a/src/components/appcelerator/original-wordmark/__tests__/__snapshots__/AppceleratorOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/appcelerator/original/__tests__/__snapshots__/AppceleratorOriginal.test.js.snap b/src/components/appcelerator/original/__tests__/__snapshots__/AppceleratorOriginal.test.js.snap
deleted file mode 100644
index b9a21109..00000000
--- a/src/components/appcelerator/original/__tests__/__snapshots__/AppceleratorOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/appcelerator/plain-wordmark/__tests__/__snapshots__/AppceleratorPlainWordmark.test.js.snap b/src/components/appcelerator/plain-wordmark/__tests__/__snapshots__/AppceleratorPlainWordmark.test.js.snap
deleted file mode 100644
index d109cb70..00000000
--- a/src/components/appcelerator/plain-wordmark/__tests__/__snapshots__/AppceleratorPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/apple/original/__tests__/__snapshots__/AppleOriginal.test.js.snap b/src/components/apple/original/__tests__/__snapshots__/AppleOriginal.test.js.snap
deleted file mode 100644
index 8cfb39c9..00000000
--- a/src/components/apple/original/__tests__/__snapshots__/AppleOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/atom/original-wordmark/__tests__/__snapshots__/AtomOriginalWordmark.test.js.snap b/src/components/atom/original-wordmark/__tests__/__snapshots__/AtomOriginalWordmark.test.js.snap
deleted file mode 100644
index 4d548eca..00000000
--- a/src/components/atom/original-wordmark/__tests__/__snapshots__/AtomOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/atom/original/__tests__/__snapshots__/AtomOriginal.test.js.snap b/src/components/atom/original/__tests__/__snapshots__/AtomOriginal.test.js.snap
deleted file mode 100644
index c2e6a3f5..00000000
--- a/src/components/atom/original/__tests__/__snapshots__/AtomOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/babel/original/__tests__/__snapshots__/BabelOriginal.test.js.snap b/src/components/babel/original/__tests__/__snapshots__/BabelOriginal.test.js.snap
deleted file mode 100644
index 538948dc..00000000
--- a/src/components/babel/original/__tests__/__snapshots__/BabelOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 3",
- }
- }
-/>
-`;
diff --git a/src/components/babel/plain/__tests__/__snapshots__/BabelPlain.test.js.snap b/src/components/babel/plain/__tests__/__snapshots__/BabelPlain.test.js.snap
deleted file mode 100644
index 6f0c9230..00000000
--- a/src/components/babel/plain/__tests__/__snapshots__/BabelPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 4",
- }
- }
-/>
-`;
diff --git a/src/components/backbonejs/original-wordmark/__tests__/__snapshots__/BackbonejsOriginalWordmark.test.js.snap b/src/components/backbonejs/original-wordmark/__tests__/__snapshots__/BackbonejsOriginalWordmark.test.js.snap
deleted file mode 100644
index a5d8b91b..00000000
--- a/src/components/backbonejs/original-wordmark/__tests__/__snapshots__/BackbonejsOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/backbonejs/original/__tests__/__snapshots__/BackbonejsOriginal.test.js.snap b/src/components/backbonejs/original/__tests__/__snapshots__/BackbonejsOriginal.test.js.snap
deleted file mode 100644
index ed1ca922..00000000
--- a/src/components/backbonejs/original/__tests__/__snapshots__/BackbonejsOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/backbonejs/plain-wordmark/__tests__/__snapshots__/BackbonejsPlainWordmark.test.js.snap b/src/components/backbonejs/plain-wordmark/__tests__/__snapshots__/BackbonejsPlainWordmark.test.js.snap
deleted file mode 100644
index edfbc2f5..00000000
--- a/src/components/backbonejs/plain-wordmark/__tests__/__snapshots__/BackbonejsPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/backbonejs/plain/__tests__/__snapshots__/BackbonejsPlain.test.js.snap b/src/components/backbonejs/plain/__tests__/__snapshots__/BackbonejsPlain.test.js.snap
deleted file mode 100644
index c5daaf7a..00000000
--- a/src/components/backbonejs/plain/__tests__/__snapshots__/BackbonejsPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/behance/original-wordmark/__tests__/__snapshots__/BehanceOriginalWordmark.test.js.snap b/src/components/behance/original-wordmark/__tests__/__snapshots__/BehanceOriginalWordmark.test.js.snap
deleted file mode 100644
index 74b6e509..00000000
--- a/src/components/behance/original-wordmark/__tests__/__snapshots__/BehanceOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 13",
- }
- }
-/>
-`;
diff --git a/src/components/behance/original/__tests__/__snapshots__/BehanceOriginal.test.js.snap b/src/components/behance/original/__tests__/__snapshots__/BehanceOriginal.test.js.snap
deleted file mode 100644
index 43abb505..00000000
--- a/src/components/behance/original/__tests__/__snapshots__/BehanceOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 12",
- }
- }
-/>
-`;
diff --git a/src/components/behance/plain-wordmark/__tests__/__snapshots__/BehancePlainWordmark.test.js.snap b/src/components/behance/plain-wordmark/__tests__/__snapshots__/BehancePlainWordmark.test.js.snap
deleted file mode 100644
index a1592895..00000000
--- a/src/components/behance/plain-wordmark/__tests__/__snapshots__/BehancePlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 15",
- }
- }
-/>
-`;
diff --git a/src/components/behance/plain/__tests__/__snapshots__/BehancePlain.test.js.snap b/src/components/behance/plain/__tests__/__snapshots__/BehancePlain.test.js.snap
deleted file mode 100644
index c0c17bb0..00000000
--- a/src/components/behance/plain/__tests__/__snapshots__/BehancePlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 14",
- }
- }
-/>
-`;
diff --git a/src/components/bitbucket/original-wordmark/__tests__/__snapshots__/BitbucketOriginalWordmark.test.js.snap b/src/components/bitbucket/original-wordmark/__tests__/__snapshots__/BitbucketOriginalWordmark.test.js.snap
deleted file mode 100644
index 9105c525..00000000
--- a/src/components/bitbucket/original-wordmark/__tests__/__snapshots__/BitbucketOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/bitbucket/original/__tests__/__snapshots__/BitbucketOriginal.test.js.snap b/src/components/bitbucket/original/__tests__/__snapshots__/BitbucketOriginal.test.js.snap
deleted file mode 100644
index 42b87702..00000000
--- a/src/components/bitbucket/original/__tests__/__snapshots__/BitbucketOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/bootstrap/plain-wordmark/__tests__/__snapshots__/BootstrapPlainWordmark.test.js.snap b/src/components/bootstrap/plain-wordmark/__tests__/__snapshots__/BootstrapPlainWordmark.test.js.snap
deleted file mode 100644
index 6d116837..00000000
--- a/src/components/bootstrap/plain-wordmark/__tests__/__snapshots__/BootstrapPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/bootstrap/plain/__tests__/__snapshots__/BootstrapPlain.test.js.snap b/src/components/bootstrap/plain/__tests__/__snapshots__/BootstrapPlain.test.js.snap
deleted file mode 100644
index e767cce7..00000000
--- a/src/components/bootstrap/plain/__tests__/__snapshots__/BootstrapPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/bower/line-wordmark/__tests__/__snapshots__/BowerLineWordmark.test.js.snap b/src/components/bower/line-wordmark/__tests__/__snapshots__/BowerLineWordmark.test.js.snap
deleted file mode 100644
index 5ff0dd22..00000000
--- a/src/components/bower/line-wordmark/__tests__/__snapshots__/BowerLineWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/bower/line/__tests__/__snapshots__/BowerLine.test.js.snap b/src/components/bower/line/__tests__/__snapshots__/BowerLine.test.js.snap
deleted file mode 100644
index dd22d13b..00000000
--- a/src/components/bower/line/__tests__/__snapshots__/BowerLine.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/bower/original-wordmark/__tests__/__snapshots__/BowerOriginalWordmark.test.js.snap b/src/components/bower/original-wordmark/__tests__/__snapshots__/BowerOriginalWordmark.test.js.snap
deleted file mode 100644
index 489b8e3f..00000000
--- a/src/components/bower/original-wordmark/__tests__/__snapshots__/BowerOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/bower/original/__tests__/__snapshots__/BowerOriginal.test.js.snap b/src/components/bower/original/__tests__/__snapshots__/BowerOriginal.test.js.snap
deleted file mode 100644
index c7fdae28..00000000
--- a/src/components/bower/original/__tests__/__snapshots__/BowerOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/bower/plain-wordmark/__tests__/__snapshots__/BowerPlainWordmark.test.js.snap b/src/components/bower/plain-wordmark/__tests__/__snapshots__/BowerPlainWordmark.test.js.snap
deleted file mode 100644
index b6f697e5..00000000
--- a/src/components/bower/plain-wordmark/__tests__/__snapshots__/BowerPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/bower/plain/__tests__/__snapshots__/BowerPlain.test.js.snap b/src/components/bower/plain/__tests__/__snapshots__/BowerPlain.test.js.snap
deleted file mode 100644
index 447a9c64..00000000
--- a/src/components/bower/plain/__tests__/__snapshots__/BowerPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/c/line/__tests__/__snapshots__/CLine.test.js.snap b/src/components/c/line/__tests__/__snapshots__/CLine.test.js.snap
deleted file mode 100644
index 8797c717..00000000
--- a/src/components/c/line/__tests__/__snapshots__/CLine.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/c/original/__tests__/__snapshots__/COriginal.test.js.snap b/src/components/c/original/__tests__/__snapshots__/COriginal.test.js.snap
deleted file mode 100644
index 8683763f..00000000
--- a/src/components/c/original/__tests__/__snapshots__/COriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/c/plain/__tests__/__snapshots__/CPlain.test.js.snap b/src/components/c/plain/__tests__/__snapshots__/CPlain.test.js.snap
deleted file mode 100644
index a8fe2f2e..00000000
--- a/src/components/c/plain/__tests__/__snapshots__/CPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/cakephp/original-wordmark/__tests__/__snapshots__/CakephpOriginalWordmark.test.js.snap b/src/components/cakephp/original-wordmark/__tests__/__snapshots__/CakephpOriginalWordmark.test.js.snap
deleted file mode 100644
index ffc543c2..00000000
--- a/src/components/cakephp/original-wordmark/__tests__/__snapshots__/CakephpOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 13",
- }
- }
-/>
-`;
diff --git a/src/components/cakephp/original/__tests__/__snapshots__/CakephpOriginal.test.js.snap b/src/components/cakephp/original/__tests__/__snapshots__/CakephpOriginal.test.js.snap
deleted file mode 100644
index 256b7fbc..00000000
--- a/src/components/cakephp/original/__tests__/__snapshots__/CakephpOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 14",
- }
- }
-/>
-`;
diff --git a/src/components/cakephp/plain-wordmark/__tests__/__snapshots__/CakephpPlainWordmark.test.js.snap b/src/components/cakephp/plain-wordmark/__tests__/__snapshots__/CakephpPlainWordmark.test.js.snap
deleted file mode 100644
index 24a769b0..00000000
--- a/src/components/cakephp/plain-wordmark/__tests__/__snapshots__/CakephpPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 15",
- }
- }
-/>
-`;
diff --git a/src/components/cakephp/plain/__tests__/__snapshots__/CakephpPlain.test.js.snap b/src/components/cakephp/plain/__tests__/__snapshots__/CakephpPlain.test.js.snap
deleted file mode 100644
index 21402ac6..00000000
--- a/src/components/cakephp/plain/__tests__/__snapshots__/CakephpPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 12",
- }
- }
-/>
-`;
diff --git a/src/components/ceylon/original-wordmark/__tests__/__snapshots__/CeylonOriginalWordmark.test.js.snap b/src/components/ceylon/original-wordmark/__tests__/__snapshots__/CeylonOriginalWordmark.test.js.snap
deleted file mode 100644
index 61ae9aef..00000000
--- a/src/components/ceylon/original-wordmark/__tests__/__snapshots__/CeylonOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 13",
- }
- }
-/>
-`;
diff --git a/src/components/ceylon/original/__tests__/__snapshots__/CeylonOriginal.test.js.snap b/src/components/ceylon/original/__tests__/__snapshots__/CeylonOriginal.test.js.snap
deleted file mode 100644
index 63ff8f30..00000000
--- a/src/components/ceylon/original/__tests__/__snapshots__/CeylonOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 12",
- }
- }
-/>
-`;
diff --git a/src/components/ceylon/plain-wordmark/__tests__/__snapshots__/CeylonPlainWordmark.test.js.snap b/src/components/ceylon/plain-wordmark/__tests__/__snapshots__/CeylonPlainWordmark.test.js.snap
deleted file mode 100644
index 92758fb7..00000000
--- a/src/components/ceylon/plain-wordmark/__tests__/__snapshots__/CeylonPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 15",
- }
- }
-/>
-`;
diff --git a/src/components/ceylon/plain/__tests__/__snapshots__/CeylonPlain.test.js.snap b/src/components/ceylon/plain/__tests__/__snapshots__/CeylonPlain.test.js.snap
deleted file mode 100644
index c2300435..00000000
--- a/src/components/ceylon/plain/__tests__/__snapshots__/CeylonPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 14",
- }
- }
-/>
-`;
diff --git a/src/components/chrome/original-wordmark/__tests__/__snapshots__/ChromeOriginalWordmark.test.js.snap b/src/components/chrome/original-wordmark/__tests__/__snapshots__/ChromeOriginalWordmark.test.js.snap
deleted file mode 100644
index 541e0368..00000000
--- a/src/components/chrome/original-wordmark/__tests__/__snapshots__/ChromeOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/chrome/original/__tests__/__snapshots__/ChromeOriginal.test.js.snap b/src/components/chrome/original/__tests__/__snapshots__/ChromeOriginal.test.js.snap
deleted file mode 100644
index 990d0ea1..00000000
--- a/src/components/chrome/original/__tests__/__snapshots__/ChromeOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/chrome/plain-wordmark/__tests__/__snapshots__/ChromePlainWordmark.test.js.snap b/src/components/chrome/plain-wordmark/__tests__/__snapshots__/ChromePlainWordmark.test.js.snap
deleted file mode 100644
index 1986c555..00000000
--- a/src/components/chrome/plain-wordmark/__tests__/__snapshots__/ChromePlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/chrome/plain/__tests__/__snapshots__/ChromePlain.test.js.snap b/src/components/chrome/plain/__tests__/__snapshots__/ChromePlain.test.js.snap
deleted file mode 100644
index 42e485b9..00000000
--- a/src/components/chrome/plain/__tests__/__snapshots__/ChromePlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/codeigniter/plain-wordmark/__tests__/__snapshots__/CodeigniterPlainWordmark.test.js.snap b/src/components/codeigniter/plain-wordmark/__tests__/__snapshots__/CodeigniterPlainWordmark.test.js.snap
deleted file mode 100644
index 5192dde7..00000000
--- a/src/components/codeigniter/plain-wordmark/__tests__/__snapshots__/CodeigniterPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/codeigniter/plain/__tests__/__snapshots__/CodeigniterPlain.test.js.snap b/src/components/codeigniter/plain/__tests__/__snapshots__/CodeigniterPlain.test.js.snap
deleted file mode 100644
index d8a28dea..00000000
--- a/src/components/codeigniter/plain/__tests__/__snapshots__/CodeigniterPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/coffeescript/original-wordmark/__tests__/__snapshots__/CoffeescriptOriginalWordmark.test.js.snap b/src/components/coffeescript/original-wordmark/__tests__/__snapshots__/CoffeescriptOriginalWordmark.test.js.snap
deleted file mode 100644
index 0ffc8589..00000000
--- a/src/components/coffeescript/original-wordmark/__tests__/__snapshots__/CoffeescriptOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/coffeescript/original/__tests__/__snapshots__/CoffeescriptOriginal.test.js.snap b/src/components/coffeescript/original/__tests__/__snapshots__/CoffeescriptOriginal.test.js.snap
deleted file mode 100644
index 4d6da7d6..00000000
--- a/src/components/coffeescript/original/__tests__/__snapshots__/CoffeescriptOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/confluence/original-wordmark/__tests__/__snapshots__/ConfluenceOriginalWordmark.test.js.snap b/src/components/confluence/original-wordmark/__tests__/__snapshots__/ConfluenceOriginalWordmark.test.js.snap
deleted file mode 100644
index 340007a6..00000000
--- a/src/components/confluence/original-wordmark/__tests__/__snapshots__/ConfluenceOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/confluence/original/__tests__/__snapshots__/ConfluenceOriginal.test.js.snap b/src/components/confluence/original/__tests__/__snapshots__/ConfluenceOriginal.test.js.snap
deleted file mode 100644
index 2d88bc2b..00000000
--- a/src/components/confluence/original/__tests__/__snapshots__/ConfluenceOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/couchdb/original-wordmark/__tests__/__snapshots__/CouchdbOriginalWordmark.test.js.snap b/src/components/couchdb/original-wordmark/__tests__/__snapshots__/CouchdbOriginalWordmark.test.js.snap
deleted file mode 100644
index e1cfbf09..00000000
--- a/src/components/couchdb/original-wordmark/__tests__/__snapshots__/CouchdbOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 13",
- }
- }
-/>
-`;
diff --git a/src/components/couchdb/original/__tests__/__snapshots__/CouchdbOriginal.test.js.snap b/src/components/couchdb/original/__tests__/__snapshots__/CouchdbOriginal.test.js.snap
deleted file mode 100644
index 40dc4406..00000000
--- a/src/components/couchdb/original/__tests__/__snapshots__/CouchdbOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 12",
- }
- }
-/>
-`;
diff --git a/src/components/couchdb/plain-wordmark/__tests__/__snapshots__/CouchdbPlainWordmark.test.js.snap b/src/components/couchdb/plain-wordmark/__tests__/__snapshots__/CouchdbPlainWordmark.test.js.snap
deleted file mode 100644
index 2545a511..00000000
--- a/src/components/couchdb/plain-wordmark/__tests__/__snapshots__/CouchdbPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-Artboard 15",
- }
- }
-/>
-`;
diff --git a/src/components/couchdb/plain/__tests__/__snapshots__/CouchdbPlain.test.js.snap b/src/components/couchdb/plain/__tests__/__snapshots__/CouchdbPlain.test.js.snap
deleted file mode 100644
index 1871e4ac..00000000
--- a/src/components/couchdb/plain/__tests__/__snapshots__/CouchdbPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 14",
- }
- }
-/>
-`;
diff --git a/src/components/cplusplus/line/__tests__/__snapshots__/CplusplusLine.test.js.snap b/src/components/cplusplus/line/__tests__/__snapshots__/CplusplusLine.test.js.snap
deleted file mode 100644
index 5f474c60..00000000
--- a/src/components/cplusplus/line/__tests__/__snapshots__/CplusplusLine.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/cplusplus/original/__tests__/__snapshots__/CplusplusOriginal.test.js.snap b/src/components/cplusplus/original/__tests__/__snapshots__/CplusplusOriginal.test.js.snap
deleted file mode 100644
index cf8f0884..00000000
--- a/src/components/cplusplus/original/__tests__/__snapshots__/CplusplusOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/cplusplus/plain/__tests__/__snapshots__/CplusplusPlain.test.js.snap b/src/components/cplusplus/plain/__tests__/__snapshots__/CplusplusPlain.test.js.snap
deleted file mode 100644
index 86e98354..00000000
--- a/src/components/cplusplus/plain/__tests__/__snapshots__/CplusplusPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/csharp/line/__tests__/__snapshots__/CsharpLine.test.js.snap b/src/components/csharp/line/__tests__/__snapshots__/CsharpLine.test.js.snap
deleted file mode 100644
index 304370ff..00000000
--- a/src/components/csharp/line/__tests__/__snapshots__/CsharpLine.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/csharp/original/__tests__/__snapshots__/CsharpOriginal.test.js.snap b/src/components/csharp/original/__tests__/__snapshots__/CsharpOriginal.test.js.snap
deleted file mode 100644
index 00d6cce5..00000000
--- a/src/components/csharp/original/__tests__/__snapshots__/CsharpOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/csharp/plain/__tests__/__snapshots__/CsharpPlain.test.js.snap b/src/components/csharp/plain/__tests__/__snapshots__/CsharpPlain.test.js.snap
deleted file mode 100644
index 663d5343..00000000
--- a/src/components/csharp/plain/__tests__/__snapshots__/CsharpPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/css3/original-wordmark/__tests__/__snapshots__/Css3OriginalWordmark.test.js.snap b/src/components/css3/original-wordmark/__tests__/__snapshots__/Css3OriginalWordmark.test.js.snap
deleted file mode 100644
index 09439848..00000000
--- a/src/components/css3/original-wordmark/__tests__/__snapshots__/Css3OriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/css3/original/__tests__/__snapshots__/Css3Original.test.js.snap b/src/components/css3/original/__tests__/__snapshots__/Css3Original.test.js.snap
deleted file mode 100644
index 9d0b797f..00000000
--- a/src/components/css3/original/__tests__/__snapshots__/Css3Original.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/css3/plain-wordmark/__tests__/__snapshots__/Css3PlainWordmark.test.js.snap b/src/components/css3/plain-wordmark/__tests__/__snapshots__/Css3PlainWordmark.test.js.snap
deleted file mode 100644
index 65906311..00000000
--- a/src/components/css3/plain-wordmark/__tests__/__snapshots__/Css3PlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/css3/plain/__tests__/__snapshots__/Css3Plain.test.js.snap b/src/components/css3/plain/__tests__/__snapshots__/Css3Plain.test.js.snap
deleted file mode 100644
index 668d4513..00000000
--- a/src/components/css3/plain/__tests__/__snapshots__/Css3Plain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/cucumber/plain-wordmark/__tests__/__snapshots__/CucumberPlainWordmark.test.js.snap b/src/components/cucumber/plain-wordmark/__tests__/__snapshots__/CucumberPlainWordmark.test.js.snap
deleted file mode 100644
index c280068c..00000000
--- a/src/components/cucumber/plain-wordmark/__tests__/__snapshots__/CucumberPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
cucumber-plain-wordmark",
- }
- }
-/>
-`;
diff --git a/src/components/cucumber/plain/__tests__/__snapshots__/CucumberPlain.test.js.snap b/src/components/cucumber/plain/__tests__/__snapshots__/CucumberPlain.test.js.snap
deleted file mode 100644
index e4a80298..00000000
--- a/src/components/cucumber/plain/__tests__/__snapshots__/CucumberPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/d3js/original/__tests__/__snapshots__/D3jsOriginal.test.js.snap b/src/components/d3js/original/__tests__/__snapshots__/D3jsOriginal.test.js.snap
deleted file mode 100644
index 465003f1..00000000
--- a/src/components/d3js/original/__tests__/__snapshots__/D3jsOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/d3js/plain/__tests__/__snapshots__/D3jsPlain.test.js.snap b/src/components/d3js/plain/__tests__/__snapshots__/D3jsPlain.test.js.snap
deleted file mode 100644
index b3799058..00000000
--- a/src/components/d3js/plain/__tests__/__snapshots__/D3jsPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/debian/original-wordmark/__tests__/__snapshots__/DebianOriginalWordmark.test.js.snap b/src/components/debian/original-wordmark/__tests__/__snapshots__/DebianOriginalWordmark.test.js.snap
deleted file mode 100644
index f50fc8e2..00000000
--- a/src/components/debian/original-wordmark/__tests__/__snapshots__/DebianOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/debian/original/__tests__/__snapshots__/DebianOriginal.test.js.snap b/src/components/debian/original/__tests__/__snapshots__/DebianOriginal.test.js.snap
deleted file mode 100644
index be0bff0c..00000000
--- a/src/components/debian/original/__tests__/__snapshots__/DebianOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/debian/plain-wordmark/__tests__/__snapshots__/DebianPlainWordmark.test.js.snap b/src/components/debian/plain-wordmark/__tests__/__snapshots__/DebianPlainWordmark.test.js.snap
deleted file mode 100644
index 522f2ceb..00000000
--- a/src/components/debian/plain-wordmark/__tests__/__snapshots__/DebianPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/debian/plain/__tests__/__snapshots__/DebianPlain.test.js.snap b/src/components/debian/plain/__tests__/__snapshots__/DebianPlain.test.js.snap
deleted file mode 100644
index 2fcdad0f..00000000
--- a/src/components/debian/plain/__tests__/__snapshots__/DebianPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/devicon/original-wordmark/__tests__/__snapshots__/DeviconOriginalWordmark.test.js.snap b/src/components/devicon/original-wordmark/__tests__/__snapshots__/DeviconOriginalWordmark.test.js.snap
deleted file mode 100644
index d9d48e93..00000000
--- a/src/components/devicon/original-wordmark/__tests__/__snapshots__/DeviconOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 13",
- }
- }
-/>
-`;
diff --git a/src/components/devicon/original/__tests__/__snapshots__/DeviconOriginal.test.js.snap b/src/components/devicon/original/__tests__/__snapshots__/DeviconOriginal.test.js.snap
deleted file mode 100644
index 1c159f71..00000000
--- a/src/components/devicon/original/__tests__/__snapshots__/DeviconOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 15",
- }
- }
-/>
-`;
diff --git a/src/components/devicon/plain-wordmark/__tests__/__snapshots__/DeviconPlainWordmark.test.js.snap b/src/components/devicon/plain-wordmark/__tests__/__snapshots__/DeviconPlainWordmark.test.js.snap
deleted file mode 100644
index 9e576d7e..00000000
--- a/src/components/devicon/plain-wordmark/__tests__/__snapshots__/DeviconPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 12",
- }
- }
-/>
-`;
diff --git a/src/components/devicon/plain/__tests__/__snapshots__/DeviconPlain.test.js.snap b/src/components/devicon/plain/__tests__/__snapshots__/DeviconPlain.test.js.snap
deleted file mode 100644
index 63a236b4..00000000
--- a/src/components/devicon/plain/__tests__/__snapshots__/DeviconPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 14",
- }
- }
-/>
-`;
diff --git a/src/components/django/line/__tests__/__snapshots__/DjangoLine.test.js.snap b/src/components/django/line/__tests__/__snapshots__/DjangoLine.test.js.snap
deleted file mode 100644
index 6d547d68..00000000
--- a/src/components/django/line/__tests__/__snapshots__/DjangoLine.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/django/original/__tests__/__snapshots__/DjangoOriginal.test.js.snap b/src/components/django/original/__tests__/__snapshots__/DjangoOriginal.test.js.snap
deleted file mode 100644
index 6e2fbd9c..00000000
--- a/src/components/django/original/__tests__/__snapshots__/DjangoOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/django/plain/__tests__/__snapshots__/DjangoPlain.test.js.snap b/src/components/django/plain/__tests__/__snapshots__/DjangoPlain.test.js.snap
deleted file mode 100644
index 23af205d..00000000
--- a/src/components/django/plain/__tests__/__snapshots__/DjangoPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/docker/original-wordmark/__tests__/__snapshots__/DockerOriginalWordmark.test.js.snap b/src/components/docker/original-wordmark/__tests__/__snapshots__/DockerOriginalWordmark.test.js.snap
deleted file mode 100644
index 9a1c4a21..00000000
--- a/src/components/docker/original-wordmark/__tests__/__snapshots__/DockerOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/docker/original/__tests__/__snapshots__/DockerOriginal.test.js.snap b/src/components/docker/original/__tests__/__snapshots__/DockerOriginal.test.js.snap
deleted file mode 100644
index 8c2d6641..00000000
--- a/src/components/docker/original/__tests__/__snapshots__/DockerOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/docker/plain-wordmark/__tests__/__snapshots__/DockerPlainWordmark.test.js.snap b/src/components/docker/plain-wordmark/__tests__/__snapshots__/DockerPlainWordmark.test.js.snap
deleted file mode 100644
index 0341afb4..00000000
--- a/src/components/docker/plain-wordmark/__tests__/__snapshots__/DockerPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/docker/plain/__tests__/__snapshots__/DockerPlain.test.js.snap b/src/components/docker/plain/__tests__/__snapshots__/DockerPlain.test.js.snap
deleted file mode 100644
index 3623db6d..00000000
--- a/src/components/docker/plain/__tests__/__snapshots__/DockerPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/doctrine/line-wordmark/__tests__/__snapshots__/DoctrineLineWordmark.test.js.snap b/src/components/doctrine/line-wordmark/__tests__/__snapshots__/DoctrineLineWordmark.test.js.snap
deleted file mode 100644
index 06be81d6..00000000
--- a/src/components/doctrine/line-wordmark/__tests__/__snapshots__/DoctrineLineWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/doctrine/line/__tests__/__snapshots__/DoctrineLine.test.js.snap b/src/components/doctrine/line/__tests__/__snapshots__/DoctrineLine.test.js.snap
deleted file mode 100644
index ca35142e..00000000
--- a/src/components/doctrine/line/__tests__/__snapshots__/DoctrineLine.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/doctrine/original-wordmark/__tests__/__snapshots__/DoctrineOriginalWordmark.test.js.snap b/src/components/doctrine/original-wordmark/__tests__/__snapshots__/DoctrineOriginalWordmark.test.js.snap
deleted file mode 100644
index f261312e..00000000
--- a/src/components/doctrine/original-wordmark/__tests__/__snapshots__/DoctrineOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/doctrine/original/__tests__/__snapshots__/DoctrineOriginal.test.js.snap b/src/components/doctrine/original/__tests__/__snapshots__/DoctrineOriginal.test.js.snap
deleted file mode 100644
index 25cb7721..00000000
--- a/src/components/doctrine/original/__tests__/__snapshots__/DoctrineOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/doctrine/plain-wordmark/__tests__/__snapshots__/DoctrinePlainWordmark.test.js.snap b/src/components/doctrine/plain-wordmark/__tests__/__snapshots__/DoctrinePlainWordmark.test.js.snap
deleted file mode 100644
index 2313800f..00000000
--- a/src/components/doctrine/plain-wordmark/__tests__/__snapshots__/DoctrinePlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/doctrine/plain/__tests__/__snapshots__/DoctrinePlain.test.js.snap b/src/components/doctrine/plain/__tests__/__snapshots__/DoctrinePlain.test.js.snap
deleted file mode 100644
index f7895d26..00000000
--- a/src/components/doctrine/plain/__tests__/__snapshots__/DoctrinePlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/dot-net/original-wordmark/__tests__/__snapshots__/DotNetOriginalWordmark.test.js.snap b/src/components/dot-net/original-wordmark/__tests__/__snapshots__/DotNetOriginalWordmark.test.js.snap
deleted file mode 100644
index c8f1c8e0..00000000
--- a/src/components/dot-net/original-wordmark/__tests__/__snapshots__/DotNetOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/dot-net/original/__tests__/__snapshots__/DotNetOriginal.test.js.snap b/src/components/dot-net/original/__tests__/__snapshots__/DotNetOriginal.test.js.snap
deleted file mode 100644
index 4b919d24..00000000
--- a/src/components/dot-net/original/__tests__/__snapshots__/DotNetOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/dot-net/plain-wordmark/__tests__/__snapshots__/DotNetPlainWordmark.test.js.snap b/src/components/dot-net/plain-wordmark/__tests__/__snapshots__/DotNetPlainWordmark.test.js.snap
deleted file mode 100644
index 6d5dcabb..00000000
--- a/src/components/dot-net/plain-wordmark/__tests__/__snapshots__/DotNetPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/dot-net/plain/__tests__/__snapshots__/DotNetPlain.test.js.snap b/src/components/dot-net/plain/__tests__/__snapshots__/DotNetPlain.test.js.snap
deleted file mode 100644
index 41dc77ca..00000000
--- a/src/components/dot-net/plain/__tests__/__snapshots__/DotNetPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/drupal/original-wordmark/__tests__/__snapshots__/DrupalOriginalWordmark.test.js.snap b/src/components/drupal/original-wordmark/__tests__/__snapshots__/DrupalOriginalWordmark.test.js.snap
deleted file mode 100644
index 1931d24a..00000000
--- a/src/components/drupal/original-wordmark/__tests__/__snapshots__/DrupalOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/drupal/original/__tests__/__snapshots__/DrupalOriginal.test.js.snap b/src/components/drupal/original/__tests__/__snapshots__/DrupalOriginal.test.js.snap
deleted file mode 100644
index 347069e7..00000000
--- a/src/components/drupal/original/__tests__/__snapshots__/DrupalOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/drupal/plain-wordmark/__tests__/__snapshots__/DrupalPlainWordmark.test.js.snap b/src/components/drupal/plain-wordmark/__tests__/__snapshots__/DrupalPlainWordmark.test.js.snap
deleted file mode 100644
index b82142b2..00000000
--- a/src/components/drupal/plain-wordmark/__tests__/__snapshots__/DrupalPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/drupal/plain/__tests__/__snapshots__/DrupalPlain.test.js.snap b/src/components/drupal/plain/__tests__/__snapshots__/DrupalPlain.test.js.snap
deleted file mode 100644
index 44bf6b69..00000000
--- a/src/components/drupal/plain/__tests__/__snapshots__/DrupalPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/electron/original-wordmark/__tests__/__snapshots__/ElectronOriginalWordmark.test.js.snap b/src/components/electron/original-wordmark/__tests__/__snapshots__/ElectronOriginalWordmark.test.js.snap
deleted file mode 100644
index 7ec750c1..00000000
--- a/src/components/electron/original-wordmark/__tests__/__snapshots__/ElectronOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 7",
- }
- }
-/>
-`;
diff --git a/src/components/electron/original/__tests__/__snapshots__/ElectronOriginal.test.js.snap b/src/components/electron/original/__tests__/__snapshots__/ElectronOriginal.test.js.snap
deleted file mode 100644
index 8c785cfa..00000000
--- a/src/components/electron/original/__tests__/__snapshots__/ElectronOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 5",
- }
- }
-/>
-`;
diff --git a/src/components/elm/original-wordmark/__tests__/__snapshots__/ElmOriginalWordmark.test.js.snap b/src/components/elm/original-wordmark/__tests__/__snapshots__/ElmOriginalWordmark.test.js.snap
deleted file mode 100644
index 579a0644..00000000
--- a/src/components/elm/original-wordmark/__tests__/__snapshots__/ElmOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 13",
- }
- }
-/>
-`;
diff --git a/src/components/elm/original/__tests__/__snapshots__/ElmOriginal.test.js.snap b/src/components/elm/original/__tests__/__snapshots__/ElmOriginal.test.js.snap
deleted file mode 100644
index 58001fe9..00000000
--- a/src/components/elm/original/__tests__/__snapshots__/ElmOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 12",
- }
- }
-/>
-`;
diff --git a/src/components/elm/plain-wordmark/__tests__/__snapshots__/ElmPlainWordmark.test.js.snap b/src/components/elm/plain-wordmark/__tests__/__snapshots__/ElmPlainWordmark.test.js.snap
deleted file mode 100644
index e18cbce8..00000000
--- a/src/components/elm/plain-wordmark/__tests__/__snapshots__/ElmPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 15",
- }
- }
-/>
-`;
diff --git a/src/components/elm/plain/__tests__/__snapshots__/ElmPlain.test.js.snap b/src/components/elm/plain/__tests__/__snapshots__/ElmPlain.test.js.snap
deleted file mode 100644
index 092a4496..00000000
--- a/src/components/elm/plain/__tests__/__snapshots__/ElmPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 14",
- }
- }
-/>
-`;
diff --git a/src/components/ember/original-wordmark/__tests__/__snapshots__/EmberOriginalWordmark.test.js.snap b/src/components/ember/original-wordmark/__tests__/__snapshots__/EmberOriginalWordmark.test.js.snap
deleted file mode 100644
index 169a1f52..00000000
--- a/src/components/ember/original-wordmark/__tests__/__snapshots__/EmberOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 5®",
- }
- }
-/>
-`;
diff --git a/src/components/erlang/original-wordmark/__tests__/__snapshots__/ErlangOriginalWordmark.test.js.snap b/src/components/erlang/original-wordmark/__tests__/__snapshots__/ErlangOriginalWordmark.test.js.snap
deleted file mode 100644
index 4e5a3aff..00000000
--- a/src/components/erlang/original-wordmark/__tests__/__snapshots__/ErlangOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/erlang/original/__tests__/__snapshots__/ErlangOriginal.test.js.snap b/src/components/erlang/original/__tests__/__snapshots__/ErlangOriginal.test.js.snap
deleted file mode 100644
index e128c67f..00000000
--- a/src/components/erlang/original/__tests__/__snapshots__/ErlangOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/erlang/plain-wordmark/__tests__/__snapshots__/ErlangPlainWordmark.test.js.snap b/src/components/erlang/plain-wordmark/__tests__/__snapshots__/ErlangPlainWordmark.test.js.snap
deleted file mode 100644
index 9c126491..00000000
--- a/src/components/erlang/plain-wordmark/__tests__/__snapshots__/ErlangPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/erlang/plain/__tests__/__snapshots__/ErlangPlain.test.js.snap b/src/components/erlang/plain/__tests__/__snapshots__/ErlangPlain.test.js.snap
deleted file mode 100644
index cfade131..00000000
--- a/src/components/erlang/plain/__tests__/__snapshots__/ErlangPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/express/original-wordmark/__tests__/__snapshots__/ExpressOriginalWordmark.test.js.snap b/src/components/express/original-wordmark/__tests__/__snapshots__/ExpressOriginalWordmark.test.js.snap
deleted file mode 100644
index 9af1fccc..00000000
--- a/src/components/express/original-wordmark/__tests__/__snapshots__/ExpressOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-Artboard 12",
- }
- }
-/>
-`;
diff --git a/src/components/express/original/__tests__/__snapshots__/ExpressOriginal.test.js.snap b/src/components/express/original/__tests__/__snapshots__/ExpressOriginal.test.js.snap
deleted file mode 100644
index ffd4381c..00000000
--- a/src/components/express/original/__tests__/__snapshots__/ExpressOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 16",
- }
- }
-/>
-`;
diff --git a/src/components/facebook/original/__tests__/__snapshots__/FacebookOriginal.test.js.snap b/src/components/facebook/original/__tests__/__snapshots__/FacebookOriginal.test.js.snap
deleted file mode 100644
index 8ec6bbe2..00000000
--- a/src/components/facebook/original/__tests__/__snapshots__/FacebookOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
facebook",
- }
- }
-/>
-`;
diff --git a/src/components/facebook/plain/__tests__/__snapshots__/FacebookPlain.test.js.snap b/src/components/facebook/plain/__tests__/__snapshots__/FacebookPlain.test.js.snap
deleted file mode 100644
index 9e992b19..00000000
--- a/src/components/facebook/plain/__tests__/__snapshots__/FacebookPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
facebook-plain",
- }
- }
-/>
-`;
diff --git a/src/components/firefox/original-wordmark/__tests__/__snapshots__/FirefoxOriginalWordmark.test.js.snap b/src/components/firefox/original-wordmark/__tests__/__snapshots__/FirefoxOriginalWordmark.test.js.snap
deleted file mode 100644
index e17a67da..00000000
--- a/src/components/firefox/original-wordmark/__tests__/__snapshots__/FirefoxOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/firefox/original/__tests__/__snapshots__/FirefoxOriginal.test.js.snap b/src/components/firefox/original/__tests__/__snapshots__/FirefoxOriginal.test.js.snap
deleted file mode 100644
index d86c7574..00000000
--- a/src/components/firefox/original/__tests__/__snapshots__/FirefoxOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/firefox/plain-wordmark/__tests__/__snapshots__/FirefoxPlainWordmark.test.js.snap b/src/components/firefox/plain-wordmark/__tests__/__snapshots__/FirefoxPlainWordmark.test.js.snap
deleted file mode 100644
index 8e299766..00000000
--- a/src/components/firefox/plain-wordmark/__tests__/__snapshots__/FirefoxPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/firefox/plain/__tests__/__snapshots__/FirefoxPlain.test.js.snap b/src/components/firefox/plain/__tests__/__snapshots__/FirefoxPlain.test.js.snap
deleted file mode 100644
index 765c6f97..00000000
--- a/src/components/firefox/plain/__tests__/__snapshots__/FirefoxPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/foundation/original-wordmark/__tests__/__snapshots__/FoundationOriginalWordmark.test.js.snap b/src/components/foundation/original-wordmark/__tests__/__snapshots__/FoundationOriginalWordmark.test.js.snap
deleted file mode 100644
index e35d0ccc..00000000
--- a/src/components/foundation/original-wordmark/__tests__/__snapshots__/FoundationOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/foundation/original/__tests__/__snapshots__/FoundationOriginal.test.js.snap b/src/components/foundation/original/__tests__/__snapshots__/FoundationOriginal.test.js.snap
deleted file mode 100644
index 9a551fc5..00000000
--- a/src/components/foundation/original/__tests__/__snapshots__/FoundationOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/foundation/plain-wordmark/__tests__/__snapshots__/FoundationPlainWordmark.test.js.snap b/src/components/foundation/plain-wordmark/__tests__/__snapshots__/FoundationPlainWordmark.test.js.snap
deleted file mode 100644
index 738a6461..00000000
--- a/src/components/foundation/plain-wordmark/__tests__/__snapshots__/FoundationPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/foundation/plain/__tests__/__snapshots__/FoundationPlain.test.js.snap b/src/components/foundation/plain/__tests__/__snapshots__/FoundationPlain.test.js.snap
deleted file mode 100644
index 3d054842..00000000
--- a/src/components/foundation/plain/__tests__/__snapshots__/FoundationPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/gatling/plain-wordmark/__tests__/__snapshots__/GatlingPlainWordmark.test.js.snap b/src/components/gatling/plain-wordmark/__tests__/__snapshots__/GatlingPlainWordmark.test.js.snap
deleted file mode 100644
index 2066b5a9..00000000
--- a/src/components/gatling/plain-wordmark/__tests__/__snapshots__/GatlingPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/gatling/plain/__tests__/__snapshots__/GatlingPlain.test.js.snap b/src/components/gatling/plain/__tests__/__snapshots__/GatlingPlain.test.js.snap
deleted file mode 100644
index 793b839a..00000000
--- a/src/components/gatling/plain/__tests__/__snapshots__/GatlingPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/gimp/original-wordmark/__tests__/__snapshots__/GimpOriginalWordmark.test.js.snap b/src/components/gimp/original-wordmark/__tests__/__snapshots__/GimpOriginalWordmark.test.js.snap
deleted file mode 100644
index 34010062..00000000
--- a/src/components/gimp/original-wordmark/__tests__/__snapshots__/GimpOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/gimp/original/__tests__/__snapshots__/GimpOriginal.test.js.snap b/src/components/gimp/original/__tests__/__snapshots__/GimpOriginal.test.js.snap
deleted file mode 100644
index f167e9a5..00000000
--- a/src/components/gimp/original/__tests__/__snapshots__/GimpOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/gimp/plain-wordmark/__tests__/__snapshots__/GimpPlainWordmark.test.js.snap b/src/components/gimp/plain-wordmark/__tests__/__snapshots__/GimpPlainWordmark.test.js.snap
deleted file mode 100644
index a316669a..00000000
--- a/src/components/gimp/plain-wordmark/__tests__/__snapshots__/GimpPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/gimp/plain/__tests__/__snapshots__/GimpPlain.test.js.snap b/src/components/gimp/plain/__tests__/__snapshots__/GimpPlain.test.js.snap
deleted file mode 100644
index 4cd48d38..00000000
--- a/src/components/gimp/plain/__tests__/__snapshots__/GimpPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/git/original-wordmark/__tests__/__snapshots__/GitOriginalWordmark.test.js.snap b/src/components/git/original-wordmark/__tests__/__snapshots__/GitOriginalWordmark.test.js.snap
deleted file mode 100644
index 2776b2a9..00000000
--- a/src/components/git/original-wordmark/__tests__/__snapshots__/GitOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/git/original/__tests__/__snapshots__/GitOriginal.test.js.snap b/src/components/git/original/__tests__/__snapshots__/GitOriginal.test.js.snap
deleted file mode 100644
index 8e1396e5..00000000
--- a/src/components/git/original/__tests__/__snapshots__/GitOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/git/plain-wordmark/__tests__/__snapshots__/GitPlainWordmark.test.js.snap b/src/components/git/plain-wordmark/__tests__/__snapshots__/GitPlainWordmark.test.js.snap
deleted file mode 100644
index 7e8b1489..00000000
--- a/src/components/git/plain-wordmark/__tests__/__snapshots__/GitPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/git/plain/__tests__/__snapshots__/GitPlain.test.js.snap b/src/components/git/plain/__tests__/__snapshots__/GitPlain.test.js.snap
deleted file mode 100644
index ce30370c..00000000
--- a/src/components/git/plain/__tests__/__snapshots__/GitPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/github/original-wordmark/__tests__/__snapshots__/GithubOriginalWordmark.test.js.snap b/src/components/github/original-wordmark/__tests__/__snapshots__/GithubOriginalWordmark.test.js.snap
deleted file mode 100644
index a2580067..00000000
--- a/src/components/github/original-wordmark/__tests__/__snapshots__/GithubOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/github/original/__tests__/__snapshots__/GithubOriginal.test.js.snap b/src/components/github/original/__tests__/__snapshots__/GithubOriginal.test.js.snap
deleted file mode 100644
index 26bbcc13..00000000
--- a/src/components/github/original/__tests__/__snapshots__/GithubOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/gitlab/original-wordmark/__tests__/__snapshots__/GitlabOriginalWordmark.test.js.snap b/src/components/gitlab/original-wordmark/__tests__/__snapshots__/GitlabOriginalWordmark.test.js.snap
deleted file mode 100644
index ff14a3f0..00000000
--- a/src/components/gitlab/original-wordmark/__tests__/__snapshots__/GitlabOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/gitlab/original/__tests__/__snapshots__/GitlabOriginal.test.js.snap b/src/components/gitlab/original/__tests__/__snapshots__/GitlabOriginal.test.js.snap
deleted file mode 100644
index e56ef8b0..00000000
--- a/src/components/gitlab/original/__tests__/__snapshots__/GitlabOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/gitlab/plain-wordmark/__tests__/__snapshots__/GitlabPlainWordmark.test.js.snap b/src/components/gitlab/plain-wordmark/__tests__/__snapshots__/GitlabPlainWordmark.test.js.snap
deleted file mode 100644
index 16c5018d..00000000
--- a/src/components/gitlab/plain-wordmark/__tests__/__snapshots__/GitlabPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/gitlab/plain/__tests__/__snapshots__/GitlabPlain.test.js.snap b/src/components/gitlab/plain/__tests__/__snapshots__/GitlabPlain.test.js.snap
deleted file mode 100644
index 4b60aa79..00000000
--- a/src/components/gitlab/plain/__tests__/__snapshots__/GitlabPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/go/line/__tests__/__snapshots__/GoLine.test.js.snap b/src/components/go/line/__tests__/__snapshots__/GoLine.test.js.snap
deleted file mode 100644
index 8a45f731..00000000
--- a/src/components/go/line/__tests__/__snapshots__/GoLine.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/go/original/__tests__/__snapshots__/GoOriginal.test.js.snap b/src/components/go/original/__tests__/__snapshots__/GoOriginal.test.js.snap
deleted file mode 100644
index 8c17681e..00000000
--- a/src/components/go/original/__tests__/__snapshots__/GoOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/go/plain/__tests__/__snapshots__/GoPlain.test.js.snap b/src/components/go/plain/__tests__/__snapshots__/GoPlain.test.js.snap
deleted file mode 100644
index 1be8ef50..00000000
--- a/src/components/go/plain/__tests__/__snapshots__/GoPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/google/original-wordmark/__tests__/__snapshots__/GoogleOriginalWordmark.test.js.snap b/src/components/google/original-wordmark/__tests__/__snapshots__/GoogleOriginalWordmark.test.js.snap
deleted file mode 100644
index 07559d54..00000000
--- a/src/components/google/original-wordmark/__tests__/__snapshots__/GoogleOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
google",
- }
- }
-/>
-`;
diff --git a/src/components/google/original/__tests__/__snapshots__/GoogleOriginal.test.js.snap b/src/components/google/original/__tests__/__snapshots__/GoogleOriginal.test.js.snap
deleted file mode 100644
index bc32f793..00000000
--- a/src/components/google/original/__tests__/__snapshots__/GoogleOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
google",
- }
- }
-/>
-`;
diff --git a/src/components/google/plain-wordmark/__tests__/__snapshots__/GooglePlainWordmark.test.js.snap b/src/components/google/plain-wordmark/__tests__/__snapshots__/GooglePlainWordmark.test.js.snap
deleted file mode 100644
index 8da16f7b..00000000
--- a/src/components/google/plain-wordmark/__tests__/__snapshots__/GooglePlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
google",
- }
- }
-/>
-`;
diff --git a/src/components/google/plain/__tests__/__snapshots__/GooglePlain.test.js.snap b/src/components/google/plain/__tests__/__snapshots__/GooglePlain.test.js.snap
deleted file mode 100644
index 3ca1f832..00000000
--- a/src/components/google/plain/__tests__/__snapshots__/GooglePlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
google",
- }
- }
-/>
-`;
diff --git a/src/components/gradle/plain-wordmark/__tests__/__snapshots__/GradlePlainWordmark.test.js.snap b/src/components/gradle/plain-wordmark/__tests__/__snapshots__/GradlePlainWordmark.test.js.snap
deleted file mode 100644
index 266b78e8..00000000
--- a/src/components/gradle/plain-wordmark/__tests__/__snapshots__/GradlePlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/gradle/plain/__tests__/__snapshots__/GradlePlain.test.js.snap b/src/components/gradle/plain/__tests__/__snapshots__/GradlePlain.test.js.snap
deleted file mode 100644
index 2f295bc8..00000000
--- a/src/components/gradle/plain/__tests__/__snapshots__/GradlePlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/grunt/line-wordmark/__tests__/__snapshots__/GruntLineWordmark.test.js.snap b/src/components/grunt/line-wordmark/__tests__/__snapshots__/GruntLineWordmark.test.js.snap
deleted file mode 100644
index 7e4fe810..00000000
--- a/src/components/grunt/line-wordmark/__tests__/__snapshots__/GruntLineWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/grunt/line/__tests__/__snapshots__/GruntLine.test.js.snap b/src/components/grunt/line/__tests__/__snapshots__/GruntLine.test.js.snap
deleted file mode 100644
index b6f69b19..00000000
--- a/src/components/grunt/line/__tests__/__snapshots__/GruntLine.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/grunt/original-wordmark/__tests__/__snapshots__/GruntOriginalWordmark.test.js.snap b/src/components/grunt/original-wordmark/__tests__/__snapshots__/GruntOriginalWordmark.test.js.snap
deleted file mode 100644
index d04d177d..00000000
--- a/src/components/grunt/original-wordmark/__tests__/__snapshots__/GruntOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/grunt/original/__tests__/__snapshots__/GruntOriginal.test.js.snap b/src/components/grunt/original/__tests__/__snapshots__/GruntOriginal.test.js.snap
deleted file mode 100644
index b160d2f2..00000000
--- a/src/components/grunt/original/__tests__/__snapshots__/GruntOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/grunt/plain-wordmark/__tests__/__snapshots__/GruntPlainWordmark.test.js.snap b/src/components/grunt/plain-wordmark/__tests__/__snapshots__/GruntPlainWordmark.test.js.snap
deleted file mode 100644
index f4273c12..00000000
--- a/src/components/grunt/plain-wordmark/__tests__/__snapshots__/GruntPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/grunt/plain/__tests__/__snapshots__/GruntPlain.test.js.snap b/src/components/grunt/plain/__tests__/__snapshots__/GruntPlain.test.js.snap
deleted file mode 100644
index 5e9ed476..00000000
--- a/src/components/grunt/plain/__tests__/__snapshots__/GruntPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/gulp/plain/__tests__/__snapshots__/GulpPlain.test.js.snap b/src/components/gulp/plain/__tests__/__snapshots__/GulpPlain.test.js.snap
deleted file mode 100644
index c1b9092c..00000000
--- a/src/components/gulp/plain/__tests__/__snapshots__/GulpPlain.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/handlebars/original-wordmark/__tests__/__snapshots__/HandlebarsOriginalWordmark.test.js.snap b/src/components/handlebars/original-wordmark/__tests__/__snapshots__/HandlebarsOriginalWordmark.test.js.snap
deleted file mode 100644
index 216ee59e..00000000
--- a/src/components/handlebars/original-wordmark/__tests__/__snapshots__/HandlebarsOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 5",
- }
- }
-/>
-`;
diff --git a/src/components/handlebars/original/__tests__/__snapshots__/HandlebarsOriginal.test.js.snap b/src/components/handlebars/original/__tests__/__snapshots__/HandlebarsOriginal.test.js.snap
deleted file mode 100644
index 3c38367d..00000000
--- a/src/components/handlebars/original/__tests__/__snapshots__/HandlebarsOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
Artboard 7",
- }
- }
-/>
-`;
diff --git a/src/components/heroku/original-wordmark/__tests__/__snapshots__/HerokuOriginalWordmark.test.js.snap b/src/components/heroku/original-wordmark/__tests__/__snapshots__/HerokuOriginalWordmark.test.js.snap
deleted file mode 100644
index 1368743e..00000000
--- a/src/components/heroku/original-wordmark/__tests__/__snapshots__/HerokuOriginalWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-
",
- }
- }
-/>
-`;
diff --git a/src/components/heroku/original/__tests__/__snapshots__/HerokuOriginal.test.js.snap b/src/components/heroku/original/__tests__/__snapshots__/HerokuOriginal.test.js.snap
deleted file mode 100644
index 9d67b9bc..00000000
--- a/src/components/heroku/original/__tests__/__snapshots__/HerokuOriginal.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-",
- }
- }
-/>
-`;
diff --git a/src/components/heroku/plain-wordmark/__tests__/__snapshots__/HerokuPlainWordmark.test.js.snap b/src/components/heroku/plain-wordmark/__tests__/__snapshots__/HerokuPlainWordmark.test.js.snap
deleted file mode 100644
index 2a15425f..00000000
--- a/src/components/heroku/plain-wordmark/__tests__/__snapshots__/HerokuPlainWordmark.test.js.snap
+++ /dev/null
@@ -1,12 +0,0 @@
-// Jest Snapshot v1, https://goo.gl/fbAQLP
-
-exports[`renders correctly 1`] = `
-