mirror of
https://github.com/FranP-code/create-better-t-stack.git
synced 2025-10-12 23:52:15 +00:00
feat: add clerk auth support with convex (#548)
This commit is contained in:
@@ -265,7 +265,7 @@ describe("Programmatic API - Fast Tests", () => {
|
||||
await expect(
|
||||
init("auth-no-db", {
|
||||
yes: true,
|
||||
auth: true,
|
||||
auth: "better-auth",
|
||||
database: "none",
|
||||
install: false,
|
||||
git: false,
|
||||
@@ -313,7 +313,7 @@ describe("Programmatic API - Fast Tests", () => {
|
||||
test("creates project with authentication enabled", async () => {
|
||||
const result = await init("auth-app", {
|
||||
yes: true,
|
||||
auth: true,
|
||||
auth: "better-auth",
|
||||
database: "sqlite",
|
||||
orm: "drizzle",
|
||||
install: false,
|
||||
@@ -325,7 +325,7 @@ describe("Programmatic API - Fast Tests", () => {
|
||||
database: "sqlite",
|
||||
orm: "drizzle",
|
||||
});
|
||||
expect(result.projectConfig.auth).toBe(true);
|
||||
expect(result.projectConfig.auth).toBe("better-auth");
|
||||
}, 15000);
|
||||
|
||||
test("validates reproducible command format", async () => {
|
||||
|
||||
Reference in New Issue
Block a user