common.ts — drizzle-orm Source File
Architecture documentation for common.ts, a typescript file in the drizzle-orm codebase. 1 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR b4ec140c_2fa1_a175_c03c_d61f6588b775["common.ts"] 8d35eaf2_a542_cfd4_fa1a_fafca0f02686["vitest"] b4ec140c_2fa1_a175_c03c_d61f6588b775 --> 8d35eaf2_a542_cfd4_fa1a_fafca0f02686 style b4ec140c_2fa1_a175_c03c_d61f6588b775 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import { beforeEach } from 'vitest';
export function skipTests(names: string[]) {
beforeEach((ctx) => {
if (ctx.task.suite?.name === 'common' && names.includes(ctx.task.name)) {
ctx.skip();
}
});
}
Domain
Subdomains
Functions
Dependencies
- vitest
Source
Frequently Asked Questions
What does common.ts do?
common.ts is a source file in the drizzle-orm codebase, written in typescript. It belongs to the DrizzleORM domain, QueryBuilders subdomain.
What functions are defined in common.ts?
common.ts defines 1 function(s): skipTests.
What does common.ts depend on?
common.ts imports 1 module(s): vitest.
Where is common.ts in the architecture?
common.ts is located at integration-tests/tests/common.ts (domain: DrizzleORM, subdomain: QueryBuilders, directory: integration-tests/tests).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free