Skip to content

Commit 87d7cc7

Browse files
authored
chore: add missing await in tests (#15301)
1 parent 75f8199 commit 87d7cc7

File tree

1 file changed

+1
-1
lines changed
  • packages/svelte/tests/preprocess

1 file changed

+1
-1
lines changed

packages/svelte/tests/preprocess/test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const { test, run } = suite<PreprocessTest>(async (config, cwd) => {
2525
fs.writeFileSync(`${cwd}/_actual.html.map`, JSON.stringify(result.map, null, 2));
2626
}
2727

28-
expect(result.code).toMatchFileSnapshot(`${cwd}/output.svelte`);
28+
await expect(result.code).toMatchFileSnapshot(`${cwd}/output.svelte`);
2929

3030
expect(result.dependencies).toEqual(config.dependencies || []);
3131

0 commit comments

Comments
 (0)