Skip to content

Commit

Permalink
Move test files to a separate directory
Browse files Browse the repository at this point in the history
  • Loading branch information
mikiher committed Apr 30, 2024
1 parent ff27c0b commit 2eb19d4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 8 deletions.
3 changes: 2 additions & 1 deletion client/cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ module.exports = defineConfig({
devServer: {
framework: "nuxt",
bundler: "webpack"
}
},
specPattern: "cypress/tests/**/*.cy.js"
}
})
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// Import the necessary dependencies
import AuthorCard from './AuthorCard.vue'
import AuthorImage from '../covers/AuthorImage.vue'
import Tooltip from '../ui/Tooltip.vue'
import LoadingSpinner from '../widgets/LoadingSpinner.vue'
import AuthorCard from '@/components/cards/AuthorCard.vue'
import AuthorImage from '@/components/covers/AuthorImage.vue'
import Tooltip from '@/components/ui/Tooltip.vue'
import LoadingSpinner from '@/components/widgets/LoadingSpinner.vue'

describe('AuthorCard', () => {
const author = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import LazySeriesCard from './LazySeriesCard.vue'
import GroupCover from '../covers/GroupCover.vue'
import LazySeriesCard from '@/components/cards/LazySeriesCard.vue'
import GroupCover from '@/components/covers/GroupCover.vue'

describe('LazySeriesCard', () => {
const series = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import NarratorCard from './NarratorCard.vue'
import NarratorCard from '@/components/cards/NarratorCard.vue'

describe('<NarratorCard />', () => {
const narrator = {
Expand Down

0 comments on commit 2eb19d4

Please sign in to comment.