Fixed deploy issue and modified some Forgejo templates
All checks were successful
Production PR / QA Tests (pull_request) Successful in 43s
All checks were successful
Production PR / QA Tests (pull_request) Successful in 43s
This commit is contained in:
parent
845f830ab3
commit
c184a79f5e
10 changed files with 12 additions and 11 deletions
|
|
@ -9,6 +9,7 @@ describe("shared/utils/env", () => {
|
|||
vi.resetModules();
|
||||
process.env = { ...originalEnv };
|
||||
process.env.NODE_ENV = "test";
|
||||
process.env.NUXT_PUBLIC_SITE_URL = "http://localhost:3000";
|
||||
process.env.DATABASE_URL = "postgres://localhost:5432/db";
|
||||
process.env.BETTER_AUTH_SECRET = "secret";
|
||||
process.env.BETTER_AUTH_URL = "http://localhost:3000";
|
||||
|
|
@ -23,6 +24,7 @@ describe("shared/utils/env", () => {
|
|||
|
||||
expect(env).toEqual({
|
||||
NODE_ENV: "test",
|
||||
NUXT_PUBLIC_SITE_URL: "http://localhost:3000",
|
||||
DATABASE_URL: "postgres://localhost:5432/db",
|
||||
BETTER_AUTH_SECRET: "secret",
|
||||
BETTER_AUTH_URL: "http://localhost:3000",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue