From ebbe498783d2b95842b29b8186d846d4a6409999 Mon Sep 17 00:00:00 2001 From: Thuc Tran <thuc.tran@silabs.com> Date: Tue, 13 Oct 2020 08:59:43 -0400 Subject: [PATCH] NOJIRA Remove unused custom additions component --- src/components/ZclCustomSetup.vue | 26 -------------------------- test/ui.test.js | 5 ----- 2 files changed, 31 deletions(-) delete mode 100644 src/components/ZclCustomSetup.vue diff --git a/src/components/ZclCustomSetup.vue b/src/components/ZclCustomSetup.vue deleted file mode 100644 index bb8a5c62..00000000 --- a/src/components/ZclCustomSetup.vue +++ /dev/null @@ -1,26 +0,0 @@ -<!-- -Copyright (c) 2008,2020 Silicon Labs. - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - -Unless required by applicable law or agreed to in writing, software -distributed under the License is distributed on an "AS IS" BASIS, -WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -See the License for the specific language governing permissions and -limitations under the License. ---> -<template> - <q-card> - <q-card-section>Zcl custom additions setup....</q-card-section> - </q-card> -</template> - -<script> -export default { - name: 'ZclCustomSetup', -} -</script> diff --git a/test/ui.test.js b/test/ui.test.js index 1672c305..4b2134f7 100644 --- a/test/ui.test.js +++ b/test/ui.test.js @@ -62,7 +62,6 @@ import ZclClusterManager from '../src/components/ZclClusterManager.vue' import ZclClusterView from '../src/components/ZclClusterView.vue' import ZclCommandManager from '../src/components/ZclCommandManager.vue' import ZclCreateModifyEndpoint from '../src/components/ZclCreateModifyEndpoint.vue' -import ZclCustomSetup from '../src/components/ZclCustomSetup.vue' import ZclDomainClusterView from '../src/components/ZclDomainClusterView.vue' import ZclEndpointCard from '../src/components/ZclEndpointCard.vue' import ZclEndpointManager from '../src/components/ZclEndpointManager.vue' @@ -145,10 +144,6 @@ test('ZclCreateModifyEndpoint', () => { const wrapper = shallowMount(ZclCreateModifyEndpoint, { store: ZapStore() }) expect(wrapper.html().length).toBeGreaterThan(100) }) -test('ZclCustomSetup', () => { - const wrapper = shallowMount(ZclCustomSetup, { store: ZapStore() }) - expect(wrapper.html().length).toBeGreaterThan(50) -}) test('ZclDomainClusterView', () => { const wrapper = shallowMount(ZclDomainClusterView, { store: ZapStore() }) expect(wrapper.html().length).toBeGreaterThan(100) -- GitLab