mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
24 lines
256 B
TypeScript
24 lines
256 B
TypeScript
import 'node:path'
|
|
|
|
export type Dummy = {
|
|
foo: "foo",
|
|
}
|
|
|
|
/**
|
|
* dummy
|
|
* dummy
|
|
*/
|
|
export default function testStack() {
|
|
innerTestStack()
|
|
}
|
|
|
|
import 'node:util'
|
|
|
|
/**
|
|
* bar
|
|
* bar
|
|
*/
|
|
function innerTestStack() {
|
|
throw new Error('__TEST_STACK_TS__')
|
|
}
|