override collection name for arangodb (#1243)
Add collection name settings for arangodb database. Required to pass common tests included in community connector
This commit is contained in:
parent
55128f0c9b
commit
1f52d23d67
|
@ -81,6 +81,7 @@ describe('default scope', function() {
|
|||
base: 'Product',
|
||||
scope: {where: {kind: 'Tool'}, order: 'name'},
|
||||
scopes: {active: {where: {active: true}}},
|
||||
arangodb: {collection: 'Product'},
|
||||
mongodb: {collection: 'Product'},
|
||||
memory: {collection: 'Product'},
|
||||
});
|
||||
|
@ -90,6 +91,7 @@ describe('default scope', function() {
|
|||
properties: {kind: 'Widget'},
|
||||
scope: {where: {kind: 'Widget'}, order: 'name'},
|
||||
scopes: {active: {where: {active: true}}},
|
||||
arangodb: {collection: 'Product'},
|
||||
mongodb: {collection: 'Product'},
|
||||
memory: {collection: 'Product'},
|
||||
});
|
||||
|
@ -114,6 +116,7 @@ describe('default scope', function() {
|
|||
base: 'Product',
|
||||
attributes: propertiesFn,
|
||||
scope: scopeFn,
|
||||
arangodb: {collection: 'Product'},
|
||||
mongodb: {collection: 'Product'},
|
||||
memory: {collection: 'Product'},
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue