Skip to content

Commit 65d8c9d

Browse files
committed
fix tests
1 parent 12ecab6 commit 65d8c9d

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed

.vscode/settings.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
"**/dist": true,
1313
"**/coverage/**/*": true,
1414
"**/dist/**/*": true,
15-
"**/node_modules/**/*": true,
16-
"**/supabase": true
15+
"**/node_modules/**/*": true
1716
},
1817
"vitest.exclude": [
1918
"**/node_modules/**",

packages/server/supabase/config.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ enable_signup = true
5454
enable_signup = true
5555
# If enabled, a user will be required to confirm any email change on both the old, and new email
5656
# addresses. If disabled, only the new email is required to confirm.
57-
double_confirm_changes = true
57+
double_confirm_changes = false
5858
# If enabled, users need to confirm their email address before signing in.
59-
enable_confirmations = true
59+
enable_confirmations = false
6060

6161
# Use an external OAuth provider. The full list of providers are: `apple`, `azure`, `bitbucket`,
6262
# `discord`, `facebook`, `github`, `gitlab`, `google`, `keycloak`, `linkedin`, `notion`, `twitch`,

packages/shared-test/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
"clean": "rimraf dist && rimraf types",
2020
"build": "npm run clean && tsc -p tsconfig.json",
2121
"watch": "tsc --watch",
22-
"lint": "eslint src"
22+
"lint": "eslint src",
23+
"test": "echo \"no tests in project\" && exit 0"
2324
},
2425
"eslintConfig": {
2526
"extends": [

packages/shared/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
"clean": "rimraf dist && rimraf types",
2424
"build": "npm run clean && tsc -p tsconfig.json",
2525
"watch": "tsc --watch",
26-
"lint": "eslint src"
26+
"lint": "eslint src",
27+
"test": "echo \"no tests in project\" && exit 0"
2728
},
2829
"eslintConfig": {
2930
"extends": [

packages/util/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@
2525
"clean": "rimraf dist && rimraf types",
2626
"build": "npm run clean && tsc -p tsconfig.json",
2727
"watch": "tsc --watch",
28-
"lint": "eslint src"
28+
"lint": "eslint src",
29+
"test": "echo \"no tests in project\" && exit 0"
2930
},
3031
"eslintConfig": {
3132
"extends": [

0 commit comments

Comments
 (0)