MCPcopy
hub / github.com/drizzle-team/drizzle-orm / skipTests

Function skipTests

integration-tests/tests/common.ts:3–9  ·  view source on GitHub ↗
(names: string[])

Source from the content-addressed store, hash-verified

1import { beforeEach } from 'vitest';
2
3export function skipTests(names: string[]) {
4 beforeEach((ctx) => {
5 if (ctx.task.suite?.name === 'common' && names.includes(ctx.task.name)) {
6 ctx.skip();
7 }
8 });
9}

Callers 15

neon-http.test.tsFile · 0.90
pglite.test.tsFile · 0.90
vercel-pg.test.tsFile · 0.90
xata-http.test.tsFile · 0.90
pg-proxy.test.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected