From 2940662d6c96f3dbb0bab181fe406101a6fe5c41 Mon Sep 17 00:00:00 2001 From: ealush Date: Wed, 3 Apr 2024 14:19:17 +0300 Subject: [PATCH] docs: Add debounce to api reference --- website/docs/api_reference.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/website/docs/api_reference.md b/website/docs/api_reference.md index 60b2ceb7c..1c918df7e 100644 --- a/website/docs/api_reference.md +++ b/website/docs/api_reference.md @@ -18,6 +18,7 @@ keywords: enforce, enforce.extend, compose, + debounce, only, skip, include, @@ -69,6 +70,7 @@ Below is a list of all the API functions exposed by Vest. - [test.memo](./writing_tests/advanced_test_features/test.memo.md) - Memoizes a test run as long as its dependencies haven't changed. - [warn](./writing_tests/warn_only_tests.md) - resides within the test body. Sets the test's severity to warning. + - [debounce](./writing_tests/advanced_test_features/debounce.md) - Debounces a test to improve async test performance and flow control. - [enforce](./enforce/enforce.md) - Asserts that a value matches your desired result.