12345678910111213141516171819 |
- /**
- * Base Context Fixture
- * (for a collection)
- */
- module.exports = {
- connections: {},
- waterline: {
- _collections: [],
- _connections: {},
- collections: {},
- connections: {},
- schema: {}
- },
- attributes: {},
- adapter: {},
- _attributes: {},
- _schema: {}
- };
|