mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
22 lines
478 B
JavaScript
22 lines
478 B
JavaScript
import { test } from 'vitest'
|
|
import testStack from "@test/test-dep-error"
|
|
import testStackTs from "@test/test-dep-error/ts.ts"
|
|
import testStackTranspiled from "@test/test-dep-error/transpiled.js"
|
|
import testStackTranspiledInline from "@test/test-dep-error/transpiled-inline.js"
|
|
|
|
test('js', () => {
|
|
testStack()
|
|
})
|
|
|
|
test('ts', () => {
|
|
testStackTs()
|
|
})
|
|
|
|
test('transpiled', () => {
|
|
testStackTranspiled()
|
|
})
|
|
|
|
test('transpiled inline', () => {
|
|
testStackTranspiledInline()
|
|
})
|