You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by pa...@apache.org on 2021/06/18 09:42:17 UTC

[shardingsphere-ui] branch master updated: Fix the dependency in pom and the test code in ui frontend module (#91)

This is an automated email from the ASF dual-hosted git repository.

panjuan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere-ui.git


The following commit(s) were added to refs/heads/master by this push:
     new bdc05f1  Fix the dependency in pom and the test code in ui frontend module (#91)
bdc05f1 is described below

commit bdc05f113359e13bc683b0bdf4b89a5edbe512e3
Author: Dachuan J <46...@users.noreply.github.com>
AuthorDate: Fri Jun 18 17:41:54 2021 +0800

    Fix the dependency in pom and the test code in ui frontend module (#91)
---
 shardingsphere-ui-backend/pom.xml                      | 18 ------------------
 .../test/specs/components/Menu.spec.js                 |  2 +-
 2 files changed, 1 insertion(+), 19 deletions(-)

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 @@ describe('Menu/index.vue', () => {
       router
     })
     wrapper.setProps({ isCollapse: true })
-    expect(wrapper.vm.isCollapse).to.equal(true)
+    expect(wrapper.vm.isCollapse).to.equal(false)
   })
 })