version.test.ts — drizzle-orm Source File
Architecture documentation for version.test.ts, a typescript file in the drizzle-orm codebase. 4 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR cfc08a35_e874_a4b5_bcb1_981950797267["version.test.ts"] c440e00a_e318_94ac_100c_9843a182c7a4["config"] cfc08a35_e874_a4b5_bcb1_981950797267 --> c440e00a_e318_94ac_100c_9843a182c7a4 f1b68b5c_65a8_b742_1b35_4ecded4b66ea["version"] cfc08a35_e874_a4b5_bcb1_981950797267 --> f1b68b5c_65a8_b742_1b35_4ecded4b66ea 8d35eaf2_a542_cfd4_fa1a_fafca0f02686["vitest"] cfc08a35_e874_a4b5_bcb1_981950797267 --> 8d35eaf2_a542_cfd4_fa1a_fafca0f02686 9d8cc145_835b_8147_2ea5_b7b5383ae775["zod"] cfc08a35_e874_a4b5_bcb1_981950797267 --> 9d8cc145_835b_8147_2ea5_b7b5383ae775 style cfc08a35_e874_a4b5_bcb1_981950797267 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
import 'dotenv/config';
import * as version from 'drizzle-orm/version';
import { expect, test } from 'vitest';
import { z } from 'zod';
test('shape', () => {
const shape = z.object({
compatibilityVersion: z.number(),
npmVersion: z.string(),
});
expect(() => shape.parse(version)).not.toThrowError();
});
Dependencies
- config
- version
- vitest
- zod
Source
Frequently Asked Questions
What does version.test.ts do?
version.test.ts is a source file in the drizzle-orm codebase, written in typescript.
What does version.test.ts depend on?
version.test.ts imports 4 module(s): config, version, vitest, zod.
Where is version.test.ts in the architecture?
version.test.ts is located at integration-tests/tests/version.test.ts (directory: integration-tests/tests).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free