Fix the dependency in pom and the test code in ui frontend module (#91)

diff --git a/shardingsphere-ui-backend/pom.xml b/shardingsphere-ui-backend/pom.xml
index 4639c38..6a074a4 100644
--- a/shardingsphere-ui-backend/pom.xml
+++ b/shardingsphere-ui-backend/pom.xml
@@ -29,24 +29,6 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.shardingsphere</groupId>
-            <artifactId>shardingsphere-sharding-common</artifactId>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.apache.shardingsphere</groupId>
-                    <artifactId>shardingsphere-sql-parser-spi</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.shardingsphere</groupId>
-                    <artifactId>shardingsphere-sql-parser-engine</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.shardingsphere</groupId>
-                    <artifactId>shardingsphere-sql-parser-binder</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.shardingsphere</groupId>
             <artifactId>shardingsphere-readwrite-splitting-core</artifactId>
         </dependency>
         <dependency>
diff --git a/shardingsphere-ui-frontend/test/specs/components/Menu.spec.js b/shardingsphere-ui-frontend/test/specs/components/Menu.spec.js
index 43a5ea3..ba929ca 100644
--- a/shardingsphere-ui-frontend/test/specs/components/Menu.spec.js
+++ b/shardingsphere-ui-frontend/test/specs/components/Menu.spec.js
@@ -69,6 +69,6 @@
       router
     })
     wrapper.setProps({ isCollapse: true })
-    expect(wrapper.vm.isCollapse).to.equal(true)
+    expect(wrapper.vm.isCollapse).to.equal(false)
   })
 })