TwoToc code
[YouAndWeb_TwoToc] / server / config / environment / test.js
1 'use strict';
2
3 // Test specific configuration
4 // ===========================
5 module.exports = {
6   // MongoDB connection options
7   mongo: {
8     uri: 'mongodb://localhost/twotoc-test'
9   },
10   sequelize: {
11     uri: 'sqlite://',
12     options: {
13       logging: false,
14       storage: 'test.sqlite',
15       define: {
16         timestamps: false
17       }
18     }
19   }
20 };