File size: 293 Bytes
aa2e6af | 1 2 3 4 5 6 7 8 | // See .env.test.example for an example of the '.env.test' file.
require('dotenv').config({ path: './test/.env.test' });
process.env.MONGO_URI = 'mongodb://127.0.0.1:27017/dummy-uri';
process.env.BAN_VIOLATIONS = 'true';
process.env.BAN_DURATION = '7200000';
process.env.BAN_INTERVAL = '20';
|