-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It's your friendly neighbourhood dependency updater again. I updated what I could, and fixed any upcoming failures. - I had to downgrade vitest to 1.5.0, because that's the only version of vitest that supports @cloudflare/vitest-pool-workers, which I'm trying to setup so we can do proper worker tests - unfortunately we have a problem where we can't load remix into the vitest environment at the moment, but I"ll keep poking at that -
- Loading branch information
1 parent
31cac98
commit 8cf3527
Showing
9 changed files
with
1,158 additions
and
1,280 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
/// <reference types="@remix-run/dev" /> | ||
/// <reference types="@remix-run/cloudflare" /> | ||
/// <reference types="@cloudflare/workers-types" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import * as path from 'path' | ||
import { defineConfig } from 'vitest/config' | ||
|
||
export default defineConfig({ | ||
resolve: { | ||
alias: { | ||
'~': path.resolve(__dirname, './app'), | ||
}, | ||
}, | ||
test: { | ||
poolOptions: { | ||
workers: { | ||
wrangler: { configPath: './wrangler.toml' }, | ||
}, | ||
}, | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters