Skip to content

Commit 79acb20

Browse files
committed
Try all files
1 parent 8d24fd2 commit 79acb20

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dev-packages/e2e-tests/test-applications/remix-hydrogen/server.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ type Env = {
2828
PUBLIC_STOREFRONT_ID: string;
2929
PUBLIC_CUSTOMER_ACCOUNT_API_CLIENT_ID: string;
3030
PUBLIC_CUSTOMER_ACCOUNT_API_URL: string;
31+
PUBLIC_CHECKOUT_DOMAIN: string;
3132
// Add any other environment variables your app expects here
3233
};
3334

@@ -42,7 +43,7 @@ export default {
4243
tunnel: `http://localhost:3031/`, // proxy server
4344
},
4445
// Need to cast to any because this is not on cloudflare
45-
request: request,
46+
request,
4647
context: executionContext,
4748
},
4849
async () => {

dev-packages/e2e-tests/test-applications/remix-hydrogen/tsconfig.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"include": [
3-
"./server.ts",
4-
"./app/**/*.d.ts",
5-
"./app/**/*.ts",
6-
"./app/**/*.tsx"
3+
"**/*.d.ts",
4+
"**/*.ts",
5+
"**/*.tsx"
76
],
87
"compilerOptions": {
98
"lib": ["DOM", "DOM.Iterable", "ES2022"],

0 commit comments

Comments
 (0)