mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
39 lines
887 B
TypeScript
39 lines
887 B
TypeScript
const oceanMock = {
|
|
ocean: {
|
|
accounts: {
|
|
list: () => ['xxx', 'xxx']
|
|
},
|
|
aquarius: {
|
|
queryMetadata: () => {
|
|
return {
|
|
results: [],
|
|
totalResults: 1,
|
|
totalPages: 1
|
|
}
|
|
}
|
|
},
|
|
assets: {
|
|
resolve: jest.fn(),
|
|
order: () => {
|
|
return {
|
|
next: jest.fn()
|
|
}
|
|
},
|
|
consume: jest.fn()
|
|
},
|
|
keeper: {
|
|
conditions: {
|
|
accessSecretStoreCondition: {
|
|
getGrantedDidByConsumer: () => {
|
|
return {
|
|
find: jest.fn()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
export default oceanMock
|