From 2b0741fa11c3ee0e3d8d265ef9f36e2be4b7bfbd Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Tue, 8 Oct 2024 18:07:13 -0400 Subject: [PATCH] docs: add error annotation (#13533) --- documentation/docs/05-misc/02-testing.md | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/docs/05-misc/02-testing.md b/documentation/docs/05-misc/02-testing.md index c1b9d538a4..a16f94c929 100644 --- a/documentation/docs/05-misc/02-testing.md +++ b/documentation/docs/05-misc/02-testing.md @@ -208,6 +208,7 @@ export default config; You can now start writing tests. These are totally unaware of Svelte as a framework, so you mainly interact with the DOM and write assertions. ```js +// @errors: 2307 7031 /// file: tests/hello-world.spec.js import { expect, test } from '@playwright/test';