aboutsummaryrefslogtreecommitdiff
path: root/test/_meta.lua
diff options
context:
space:
mode:
Diffstat (limited to 'test/_meta.lua')
-rw-r--r--test/_meta.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/_meta.lua b/test/_meta.lua
new file mode 100644
index 0000000000..b736bcc6d9
--- /dev/null
+++ b/test/_meta.lua
@@ -0,0 +1,10 @@
+--- @meta
+
+do -- Mark block as optional
+ ---Mark a test as placeholder.
+ ---
+ ---This will not fail or pass, it will simply be marked as "pending".
+ ---@param name string
+ ---@param block? fun()
+ function pending(name, block) end
+end