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 7958314 commit bd09c42Copy full SHA for bd09c42
tests/integration/server/index.test.ts
@@ -31,13 +31,14 @@ describe('server config', async () => {
31
});
32
33
await awaitFileExists(rsbuildConfigFile);
34
- childProcess.kill();
35
36
// Check if the server config is merged correctly
37
const rsbuildConfigContent = await fse.readFile(rsbuildConfigFile, 'utf-8');
38
expect(rsbuildConfigContent).toContain(`base: '/'`);
39
expect(rsbuildConfigContent).toContain('open: true');
40
expect(rsbuildConfigContent).toContain('port: 3002');
41
expect(rsbuildConfigContent).toContain('printUrls: false');
+
42
+ childProcess.kill();
43
44
0 commit comments