diff --git a/extensions/defaults.json b/extensions/defaults.json
index ff61bcf..fd8ed44 100644
--- a/extensions/defaults.json
+++ b/extensions/defaults.json
@@ -29,7 +29,8 @@
"_folder_assets_open",
"_folder_bower_open",
"_folder_git_open",
- "_folder_github_open"
+ "_folder_github_open",
+ "_folder_test_open"
],
"changelog": {
"lastversion": "1.1.1"
@@ -37,6 +38,12 @@
"icons": {
"theme": {
"iconDefinitions": {
+ "_folder_test": {
+ "iconPath": "../icons/folder_test.svg"
+ },
+ "_folder_test_open": {
+ "iconPath": "../icons/folder_test_open.svg"
+ },
"_folder_github": {
"iconPath": "../icons/folder_github.svg"
},
@@ -168,6 +175,7 @@
"_folder_assets",
"_folder_bower",
"_folder_git",
- "_folder_github"
+ "_folder_github",
+ "_folder_test"
]
}
\ No newline at end of file
diff --git a/src/icons/partials/folderNames.js b/src/icons/partials/folderNames.js
index 9d07158..b903b85 100644
--- a/src/icons/partials/folderNames.js
+++ b/src/icons/partials/folderNames.js
@@ -1,4 +1,5 @@
"folderNames": {
+ "test": "_folder_test",
"node_modules": "_folder_node",
"assets": "_folder_assets",
"bower_components": "_folder_bower",
@@ -13,6 +14,7 @@
"dist": "_folder_dark_build"
},
"folderNamesExpanded": {
+ "test": "_folder_test_open",
"node_modules": "_folder_node_open",
"bower_components": "_folder_bower_open",
"assets": "_folder_assets_open",
diff --git a/src/icons/partials/light.js b/src/icons/partials/light.js
index 8ca9105..78b641d 100644
--- a/src/icons/partials/light.js
+++ b/src/icons/partials/light.js
@@ -3,6 +3,7 @@
"folder": "_folder_light",
"folderNames": {
"node_modules": "_folder_node",
+ "test": "_folder_test",
"assets": "_folder_assets",
"bower_components": "_folder_bower",
"js": "_folder_js",
@@ -17,6 +18,7 @@
},
"folderNamesExpanded": {
"node_modules": "_folder_node_open",
+ "test": "_folder_test_open",
"bower_components": "_folder_bower_open",
"assets": "_folder_assets_open",
"src": "_folder_src_open",
diff --git a/src/icons/svgs/folder_test.svg b/src/icons/svgs/folder_test.svg
new file mode 100644
index 0000000..6eac173
--- /dev/null
+++ b/src/icons/svgs/folder_test.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/icons/svgs/folder_test_open.svg b/src/icons/svgs/folder_test_open.svg
new file mode 100644
index 0000000..33163af
--- /dev/null
+++ b/src/icons/svgs/folder_test_open.svg
@@ -0,0 +1 @@
+
\ No newline at end of file