| 12345678910111213141516171819202122 |
- import { VendureConfig } from '@vendure/core';
- export const testConfig: VendureConfig = {
- apiOptions: {
- port: 3000,
- adminApiPath: 'admin-api',
- shopApiPath: 'shop-api',
- },
- dbConnectionOptions: {
- type: 'sqlite',
- database: ':memory:',
- synchronize: false,
- migrations: ['migrations/*.ts'],
- },
- authOptions: {
- tokenMethod: 'bearer',
- },
- paymentOptions: {
- paymentMethodHandlers: [],
- },
- plugins: [],
- };
|