chore: Move factories and helpers to a better place (#4551)
* chore: Move factories and helpers to a better place * align factory product variant * fix factory cart * add simple store fac * fix tests * fix tests * fix * fix cart seeder
This commit is contained in:
committed by
GitHub
parent
26e2f81c24
commit
4d326fbbdf
@@ -5,7 +5,8 @@ const DB_NAME = process.env.DB_TEMP_NAME
|
||||
|
||||
const redisUrl = process.env.REDIS_URL || "redis://localhost:6379"
|
||||
const cacheTTL = process.env.CACHE_TTL || 15
|
||||
const enableResponseCompression = process.env.ENABLE_RESPONSE_COMPRESSION || true
|
||||
const enableResponseCompression =
|
||||
process.env.ENABLE_RESPONSE_COMPRESSION || true
|
||||
|
||||
module.exports = {
|
||||
plugins: [],
|
||||
@@ -16,8 +17,8 @@ module.exports = {
|
||||
jwt_secret: "test",
|
||||
cookie_secret: "test",
|
||||
http_compression: {
|
||||
enabled: enableResponseCompression
|
||||
}
|
||||
enabled: enableResponseCompression,
|
||||
},
|
||||
},
|
||||
modules: {
|
||||
cacheService: {
|
||||
|
||||
Reference in New Issue
Block a user