We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e64445e commit fc08b20Copy full SHA for fc08b20
tests/scripts/rsbuild.ts
@@ -89,7 +89,9 @@ const updateConfigForTest = async (
89
};
90
91
const createRsbuild = async (
92
- rsbuildOptions: CreateRsbuildOptions,
+ rsbuildOptions: CreateRsbuildOptions & {
93
+ rsbuildConfig?: RsbuildConfig;
94
+ },
95
plugins: RsbuildPlugins = [],
96
) => {
97
const { createRsbuild: createRsbuildInner } = await import('@rsbuild/core');
@@ -110,6 +112,7 @@ export async function dev({
110
112
...options
111
113
}: CreateRsbuildOptions & {
114
plugins?: RsbuildPlugins;
115
116
/**
117
* Playwright Page instance.
118
* This method will automatically goto the page.
0 commit comments