From 60a7007141a3e2a9f806adc495b1c51cf0f83e36 Mon Sep 17 00:00:00 2001 From: Vladimir Sheremet Date: Fri, 9 Aug 2024 17:07:13 +0200 Subject: [PATCH] docs: use info instead of note --- docs/guide/browser/interactivity-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/browser/interactivity-api.md b/docs/guide/browser/interactivity-api.md index 537abc23d392..fd308f8299e2 100644 --- a/docs/guide/browser/interactivity-api.md +++ b/docs/guide/browser/interactivity-api.md @@ -259,7 +259,7 @@ test('update input', async () => { }) ``` -::: note +::: info Vitest doesn't expose `.type` method on the locator like `input.type` because it exists only for compatiblity with the `userEvent` library. Consider using `.fill` instead as it is faster. :::