MCPcopy Index your code
hub / github.com/Effect-TS/effect / skip

Function skip

packages/vitest/src/internal/internal.ts:99–100  ·  view source on GitHub ↗
(name, self, timeout)

Source from the content-addressed store, hash-verified

97 it(name, testOptions(timeout), (ctx) => run(ctx, [ctx], self))
98
99 const skip: Vitest.Vitest.Tester<R>["only"] = (name, self, timeout) =>
100 it.skip(name, testOptions(timeout), (ctx) => run(ctx, [ctx], self))
101
102 const skipIf: Vitest.Vitest.Tester<R>["skipIf"] = (condition) => (name, self, timeout) =>
103 it.skipIf(condition)(name, testOptions(timeout), (ctx) => run(ctx, [ctx], self))

Callers

nothing calls this directly

Calls 2

testOptionsFunction · 0.85
runFunction · 0.70

Tested by

no test coverage detected