Skip to content

Commit

Permalink
test(integration): Migrate About component test
Browse files Browse the repository at this point in the history
- remove old test
  • Loading branch information
TheGreatRefrigerator committed Dec 7, 2022
1 parent 8a59aca commit d7ac997
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 21 deletions.
15 changes: 15 additions & 0 deletions src/fragments/about/About.cy.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import About from './About.vue'
import I18nBuilder from '@/i18n/i18n-builder'
import store from '@/store/store'

describe('<About />', () => {
const i18n = I18nBuilder.build()


it('renders', () => {
// see: https://test-utils.vuejs.org/guide/
cy.mount(About, {store: store, i18n: i18n})

cy.get('.about-container')
})
})
21 changes: 0 additions & 21 deletions tests/integration/specs/about.spec.js

This file was deleted.

0 comments on commit d7ac997

Please sign in to comment.