Skip to content

Commit

Permalink
Disable fixture tests (#3246)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbbot committed May 17, 2023
1 parent 9973ea2 commit cf18041
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"fix": "npm run prettify && npm run check:lint -- --fix",
"postinstall": "patch-package",
"prettify": "prettier . --write --ignore-unknown",
"test": "npm run clean --workspace=wrangler && npm run bundle --workspace=wrangler && npm run test --workspace=packages/wrangler --workspace=packages/edge-preview-authenticated-proxy --workspace=packages/pages-shared --if-present && npx vitest",
"test:ci": "npm run test:ci --workspace=packages/wrangler --workspace=packages/pages-shared --if-present && npx vitest"
"test": "npm run clean --workspace=wrangler && npm run bundle --workspace=wrangler && npm run test --workspace=packages/wrangler --workspace=packages/edge-preview-authenticated-proxy --workspace=packages/pages-shared --if-present",
"test:ci": "npm run test:ci --workspace=packages/wrangler --workspace=packages/pages-shared --if-present"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/wrangler/src/pages/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ export const Handler = async ({
additionalModules: modules,
d1Databases: d1s.map((binding) => ({
binding: binding.toString(),
database_id: "", // Required for types, but unused by dev
database_id: binding.toString(),
database_name: `local-${binding}`,
})),
disableExperimentalWarning: true,
Expand Down

0 comments on commit cf18041

Please sign in to comment.