Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/denops_core/test/tester.ts>TestDefinition

🐜 An ecosystem of Vim/Neovim which allows developers to write cross-platform plugins in Deno
Go to Latest
type alias TestDefinition
import { type TestDefinition } from "https://deno.land/x/denops_core@v3.2.2/test/tester.ts";
definition: Omit<Deno.TestDefinition, "fn"> & { mode:
| "vim"
| "nvim"
| "any"
| "all"
; fn: (denops: Denops) => Promise<void> | void; pluginName?: string; timeout?: number; verbose?: boolean; prelude?: string[]; }