Move component tests into the same directory as their component counterparts (#3625)

Co-authored-by: Benjamin Lu <templu1107@proton.me>
This commit is contained in:
Benjamin Lu
2025-04-25 13:13:30 -04:00
committed by GitHub
parent 630fa04882
commit 8491ca91b7
14 changed files with 14 additions and 14 deletions

View File

@@ -5,7 +5,7 @@ import SelectButton from 'primevue/selectbutton'
import { beforeEach, describe, expect, it } from 'vitest'
import { createApp, nextTick } from 'vue'
import ColorCustomizationSelector from '../ColorCustomizationSelector.vue'
import ColorCustomizationSelector from './ColorCustomizationSelector.vue'
describe('ColorCustomizationSelector', () => {
const colorOptions = [

View File

@@ -4,7 +4,7 @@ import InputText from 'primevue/inputtext'
import { beforeAll, describe, expect, it } from 'vitest'
import { createApp } from 'vue'
import EditableText from '../EditableText.vue'
import EditableText from './EditableText.vue'
describe('EditableText', () => {
beforeAll(() => {

View File

@@ -6,7 +6,7 @@ import InputText from 'primevue/inputtext'
import { beforeEach, describe, expect, it } from 'vitest'
import { createApp, nextTick } from 'vue'
import UrlInput from '../UrlInput.vue'
import UrlInput from './UrlInput.vue'
describe('UrlInput', () => {
beforeEach(() => {