all repos — caroster @ 3f36f7140b41721e898b57f036cd828e2c6e29ea

[Octree] Group carpool to your event https://caroster.io

backend/config/env/test/database.ts (view raw)

 1import path from "path";
 2
 3export default ({ env }) => {
 4  return {
 5    connection: {
 6      client: "sqlite",
 7      connection: {
 8        filename: env("DATABASE_FILENAME", path.join(".tmp", "test.db")),
 9      },
10      useNullAsDefault: true,
11    },
12  };
13};