diff --git a/test/unit/get-webpack-conf.js b/test/unit/get-webpack-conf.js
index 09fad3cbe..695aed61f 100644
--- a/test/unit/get-webpack-conf.js
+++ b/test/unit/get-webpack-conf.js
@@ -74,7 +74,7 @@ const webpackConfig = {
         }]
       },
       {
-        test: /test\/unit\/components\/.*\.vue$|packages\/swipe\/.*\.vue$/,
+        test: /\.vue$/,
         use: [{
           loader: 'vue-loader',
           options: {
@@ -87,25 +87,6 @@ const webpackConfig = {
             }
           }
         }]
-      },
-      {
-        test: /packages\/.*\.vue$/,
-        exclude: /packages\/swipe/,
-        use: [{
-          loader: 'vue-loader',
-          options: {
-            loaders: {
-              css: [
-                'style-loader',
-                'css-loader',
-                'postcss-loader'
-              ],
-              js: [
-                'isparta-loader'
-              ]
-            }
-          }
-        }]
       }
     ]
   },
diff --git a/test/unit/specs/picker.spec.js b/test/unit/specs/picker.spec.js
index dd8e5770a..d3fe2184d 100644
--- a/test/unit/specs/picker.spec.js
+++ b/test/unit/specs/picker.spec.js
@@ -1,5 +1,5 @@
 import Picker from 'packages/picker';
-import PickerColumn from 'packages/picker/src/picker-column';
+import PickerColumn from 'packages/picker/picker-column';
 import { mount } from 'avoriaz';
 import Wrapper from 'avoriaz/dist/Wrapper';