summaryrefslogtreecommitdiffstats
path: root/lib/modifiers/config/__tests__/removePlugin.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/modifiers/config/__tests__/removePlugin.js')
-rw-r--r--lib/modifiers/config/__tests__/removePlugin.js33
1 files changed, 0 insertions, 33 deletions
diff --git a/lib/modifiers/config/__tests__/removePlugin.js b/lib/modifiers/config/__tests__/removePlugin.js
deleted file mode 100644
index 253cc39..0000000
--- a/lib/modifiers/config/__tests__/removePlugin.js
+++ /dev/null
@@ -1,33 +0,0 @@
-var removePlugin = require('../removePlugin');
-var Config = require('../../../models/config');
-
-describe('removePlugin', function() {
- var config = Config.createWithValues({
- plugins: ['hello', 'world', '-disabled']
- });
-
- it('should remove the plugin from the list', function() {
- var newConfig = removePlugin(config, 'hello');
-
- var testDep = newConfig.getPluginDependency('hello');
- expect(testDep).toNotBeDefined();
- });
-
- it('should remove the disabled plugin from the list', function() {
- var newConfig = removePlugin(config, 'disabled');
-
- var testDep = newConfig.getPluginDependency('disabled');
- expect(testDep).toNotBeDefined();
- });
-
- it('should disable default plugin', function() {
- var newConfig = removePlugin(config, 'search');
-
- var disabledDep = newConfig.getPluginDependency('search');
- expect(disabledDep).toBeDefined();
- expect(disabledDep.getVersion()).toEqual('*');
- expect(disabledDep.isEnabled()).toBeFalsy();
- });
-});
-
-