From 6d3a58d18cf238aa8ea7515eca1ce6437587359f Mon Sep 17 00:00:00 2001 From: ogerly Date: Fri, 25 Mar 2022 20:29:36 +0100 Subject: [PATCH] rename spec from CreationTransactionListFormular to CreationTransactionList --- admin/src/components/CreationTransactionList.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/admin/src/components/CreationTransactionList.spec.js b/admin/src/components/CreationTransactionList.spec.js index fb137e516..3e2d5893e 100644 --- a/admin/src/components/CreationTransactionList.spec.js +++ b/admin/src/components/CreationTransactionList.spec.js @@ -1,5 +1,5 @@ import { mount } from '@vue/test-utils' -import CreationTransactionListFormular from './CreationTransactionListFormular.vue' +import CreationTransactionList from './CreationTransactionList.vue' import { toastErrorSpy } from '../../test/testSetup' const localVue = global.localVue @@ -46,11 +46,11 @@ const propsData = { fields: ['date', 'balance', 'name', 'memo', 'decay'], } -describe('CreationTransactionListFormular', () => { +describe('CreationTransactionList', () => { let wrapper const Wrapper = () => { - return mount(CreationTransactionListFormular, { localVue, mocks, propsData }) + return mount(CreationTransactionList, { localVue, mocks, propsData }) } describe('mount', () => {