Skip to content

Commit

Permalink
Added possible "test" env to schema for vitest
Browse files Browse the repository at this point in the history
  • Loading branch information
Nils-Kolvenbach committed Feb 1, 2024
1 parent 05e0ec4 commit a19cc6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/baseSchema.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import z from 'zod';

export const environmentSchema = z.enum(['production', 'development']);
export const environmentSchema = z.enum(['production', 'development', 'test']);
export type Environment = z.infer<typeof environmentSchema>;

/**
Expand Down

0 comments on commit a19cc6b

Please sign in to comment.