test: organize test files

This commit is contained in:
Ayo Ayco 2025-03-22 10:14:35 +01:00
parent 3056e84d4c
commit a35e1901f0
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
import { beforeEach, describe, expect, it } from 'vitest' import { beforeEach, describe, expect, it } from 'vitest'
import { WebComponent } from './WebComponent.js' import { WebComponent } from '../src/WebComponent.js'
let componentUnderTest let componentUnderTest

View file

@ -1,5 +1,5 @@
import { describe, expect, test } from 'vitest' import { describe, expect, test } from 'vitest'
import { serialize } from '../src/utils/serialize.mjs' import { serialize } from '../../src/utils/serialize.mjs'
describe('serialize', () => { describe('serialize', () => {
test('should stringify number', () => { test('should stringify number', () => {