Skip to content

Commit

Permalink
fix some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
penalosa committed Oct 25, 2024
1 parent 368c99b commit cb24802
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"cf-typegen": "wrangler types"
},
"devDependencies": {
"typescript": "catalog:default",
"typescript": "^5.5.2",
"wrangler": "^3.60.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.5.2",
"typescript": "catalog:default",
"typescript": "^5.5.2",
"vitest": "2.0.5",
"wrangler": "^3.60.3"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"devDependencies": {
"itty-router": "^3.0.12",
"typescript": "catalog:default",
"typescript": "^5.5.2",
"wrangler": "^3.60.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"cf-typegen": "wrangler types"
},
"devDependencies": {
"typescript": "catalog:default",
"typescript": "^5.5.2",
"wrangler": "^3.60.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.5.2",
"typescript": "catalog:default",
"typescript": "^5.5.2",
"vitest": "2.0.5",
"wrangler": "^3.60.3"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"cf-typegen": "wrangler types"
},
"devDependencies": {
"typescript": "catalog:default",
"typescript": "^5.5.2",
"wrangler": "^3.60.3"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"cf-typegen": "wrangler types"
},
"devDependencies": {
"typescript": "catalog:default",
"typescript": "^5.5.2",
"wrangler": "^3.60.3"
}
}
14 changes: 7 additions & 7 deletions packages/wrangler/src/__tests__/deploy.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4477,7 +4477,7 @@ addEventListener('fetch', event => {});`
"ff5016e92f039aa743a4ff7abb3180fa",
{
// TODO: this should be "text/plain; charset=utf-8", but msw? is stripping the charset part
type: "text/plain; charset=utf-8",
type: "text/plain",
}
)
);
Expand All @@ -4488,7 +4488,7 @@ addEventListener('fetch', event => {});`
["Q29udGVudCBvZiBmaWxlLTI="],
"7574a8cd3094a050388ac9663af1c1d6",
{
type: "text/plain; charset=utf-8",
type: "text/plain",
}
)
);
Expand All @@ -4499,7 +4499,7 @@ addEventListener('fetch', event => {});`
["Q29udGVudCBvZiBmaWxlLTE="],
"0de3dd5df907418e9730fd2bd747bd5e",
{
type: "text/plain; charset=utf-8",
type: "text/plain",
}
)
);
Expand Down Expand Up @@ -4893,7 +4893,7 @@ addEventListener('fetch', event => {});`
["Q29udGVudCBvZiBmaWxlLTE="],
"0de3dd5df907418e9730fd2bd747bd5e",
{
type: "text/plain; charset=utf-8",
type: "text/plain",
}
)
);
Expand All @@ -4905,7 +4905,7 @@ addEventListener('fetch', event => {});`
"7574a8cd3094a050388ac9663af1c1d6",
{
// TODO: this should be "text/plain; charset=utf-8", but msw? is stripping the charset part
type: "text/plain; charset=utf-8",
type: "text/plain",
}
)
);
Expand All @@ -4916,7 +4916,7 @@ addEventListener('fetch', event => {});`
["Q29udGVudCBvZiBmaWxlLTM="],
"ff5016e92f039aa743a4ff7abb3180fa",
{
type: "text/plain; charset=utf-8",
type: "text/plain",
}
)
);
Expand All @@ -4927,7 +4927,7 @@ addEventListener('fetch', event => {});`
["Q29udGVudCBvZiBmaWxlLTU="],
"f05e28a3d0bdb90d3cf4bdafe592488f",
{
type: "text/plain; charset=utf-8",
type: "text/plain",
}
)
);
Expand Down

0 comments on commit cb24802

Please sign in to comment.