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 76ec11b commit 9e66c9cCopy full SHA for 9e66c9c
tests/integration/cli/build-watch/build.test.ts
@@ -7,7 +7,7 @@ import { describe, test } from 'vitest';
7
describe('build --watch command', async () => {
8
test('basic', async () => {
9
const distPath = path.join(__dirname, 'dist');
10
- await fse.remove(distPath);
+ fse.removeSync(distPath);
11
12
const tempConfigFile = path.join(__dirname, 'test-temp-rslib.config.mjs');
13
@@ -30,7 +30,7 @@ export default defineConfig({
30
31
await awaitFileExists(distEsmIndexFile);
32
33
34
35
fse.outputFileSync(
36
tempConfigFile,
0 commit comments