Skip to content

Commit

Permalink
Fix typecheck failure as discussed
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniFoldi committed Mar 5, 2024
1 parent 1e260ec commit eed80d3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/wrangler/src/__tests__/type-generation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ import type { EnvironmentNonInheritable } from "../config/environment";

const bindingsConfigMock: Omit<
EnvironmentNonInheritable,
"define" | "unsafe" | "tail_consumers" | "constellation" | "cloudchamber"
> = {
"define" | "tail_consumers" | "constellation" | "cloudchamber"
> &
Record<string, unknown> = {
kv_namespaces: [{ binding: "TEST_KV_NAMESPACE", id: "1234" }],
vars: {
SOMETHING: "asdasdfasdf",
Expand Down

0 comments on commit eed80d3

Please sign in to comment.