9 lines
251 B
TypeScript
9 lines
251 B
TypeScript
import { withRsbuildConfig } from '@rstest/adapter-rsbuild';
|
|
import { defineConfig } from '@rstest/core';
|
|
|
|
// Docs: https://rstest.rs/config/
|
|
export default defineConfig({
|
|
extends: withRsbuildConfig(),
|
|
setupFiles: ['./tests/rstest.setup.ts'],
|
|
});
|