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 5ae21cd commit f5b06e8Copy full SHA for f5b06e8
tests/integration/cli/build-watch/build.test.ts
@@ -116,8 +116,8 @@ export default defineConfig({
116
await expectFileWithContent(distIndexFile, 'index');
117
118
fse.outputFileSync(srcFooFile, `export const foo = 'foo';`);
119
- fse.outputFileSync(srcFoo2File, `export const foo2 = 'foo2';`);
120
await expectFileWithContent(distFooFile, `'foo'`);
+ fse.outputFileSync(srcFoo2File, `export const foo2 = 'foo2';`);
121
await expectFileWithContent(distFoo2File, 'foo2');
122
123
const content1 = await fse.readFile(distFooFile, 'utf-8');
0 commit comments