Version
Details
Expected to output an error log when rstest watch exception exit, but no.

Reproduce link
https://github.com/web-infra-dev/rstest/blob/main/examples/node
Reproduce Steps
- update
rstest.config.ts
npx rstest or npx rstest watch
import { defineConfig } from '@rstest/core';
export default defineConfig({
plugins: [
{
name: 'test',
setup: (_api) => {
throw new Error('setup error');
},
},
],
});