mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-03 16:38:22 +03:00
b781e47cb9
- this keeps production and test fixtures separate, so that changing the prod fixtures doesn't change the shape of our tests. - we may still want to test that the production fixtures do what we expect, but that can be handled in a separate integration test, by specifically setting the fixture path
57 lines
1.3 KiB
JSON
57 lines
1.3 KiB
JSON
{
|
|
"url": "http://127.0.0.1:2369",
|
|
"database": {
|
|
"client": "sqlite3",
|
|
"connection": {
|
|
"filename": "/tmp/ghost-test.db"
|
|
},
|
|
"useNullAsDefault": true,
|
|
"debug": false
|
|
},
|
|
"server": {
|
|
"port": 2369
|
|
},
|
|
"logging": {
|
|
"level": "fatal"
|
|
},
|
|
"spam": {
|
|
"user_login": {
|
|
"minWait": 600000,
|
|
"maxWait": 604800000,
|
|
"freeRetries": 3
|
|
},
|
|
"user_reset": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries": 4
|
|
},
|
|
"global_reset": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries":4
|
|
},
|
|
"global_block": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries":4
|
|
},
|
|
"private_block": {
|
|
"minWait": 3600000,
|
|
"maxWait": 3600000,
|
|
"lifetime": 3600,
|
|
"freeRetries":99
|
|
}
|
|
},
|
|
"privacy": {
|
|
"useTinfoil": true,
|
|
"useStructuredData": true
|
|
},
|
|
"useMinFiles": false,
|
|
"paths": {
|
|
"fixtures": "test/utils/fixtures/fixtures"
|
|
}
|
|
}
|