Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

moved tests for components into grouped folders #379

Merged
merged 3 commits into from
Jan 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions test/unit/specs/LiCopy.spec.js

This file was deleted.

16 changes: 0 additions & 16 deletions test/unit/specs/__snapshots__/LiCopy.spec.js.snap

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import AppFooter from 'renderer/components/common/AppFooter'

describe('AppFooter', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import AppHeader from 'common/AppHeader'
import htmlBeautify from 'html-beautify'
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'

describe('AppHeader', () => {
let wrapper, store, instance
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import Vuelidate from 'vuelidate'
import htmlBeautify from 'html-beautify'
import NiSessionSignIn from 'common/NiSessionSignIn'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import Vuelidate from 'vuelidate'
import htmlBeautify from 'html-beautify'
import NISessionSignUp from 'common/NiSessionSignUp'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'

jest.mock('electron', () => ({
clipboard: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import NiModalHelp from 'common/NiModalHelp'

describe('NiModalHelp', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import NiModalSearch from 'common/NiModalSearch'
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'

describe('NiModalSearch', () => {
let wrapper, store
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import NiUserPane from 'common/NiUserPane'
import ListItem from 'common/NiListItem'
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'

describe('NiUserPane', () => {
let wrapper, router, store, instance
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import Page404 from 'renderer/components/common/Page404'

describe('Page404', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import LiDelegate from 'renderer/components/staking/LiDelegate'

describe('LiDelegate', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import htmlBeautify from 'html-beautify'
import Vuelidate from 'vuelidate'
import PageBond from 'renderer/components/staking/PageBond'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import PageDelegate from 'renderer/components/staking/PageDelegate'

describe('PageDelegate', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import htmlBeautify from 'html-beautify'
import PageDelegates from 'renderer/components/staking/PageDelegates'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import PageBalances from 'renderer/components/wallet/PageBalances'

describe('PageBalances', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import Vuelidate from 'vuelidate'
import PageSend from 'renderer/components/wallet/PageSend'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import setup from '../helpers/vuex-setup'
import setup from '../../../helpers/vuex-setup'
import PageTransactions from 'renderer/components/wallet/PageTransactions'

describe('PageTransactions', () => {
Expand Down