context.fixture.js 283 B

12345678910111213141516171819
  1. /**
  2. * Base Context Fixture
  3. * (for a collection)
  4. */
  5. module.exports = {
  6. connections: {},
  7. waterline: {
  8. _collections: [],
  9. _connections: {},
  10. collections: {},
  11. connections: {},
  12. schema: {}
  13. },
  14. attributes: {},
  15. adapter: {},
  16. _attributes: {},
  17. _schema: {}
  18. };