mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
81341cd914
* Creating related assets component * Ensuring that related assets doesn't show the same asset * Adjusting query to show assets from the same publisher but not the exact same asset * modifying search term * Removing logs and unused import * Removing log * Updating query * Fixes * updating query * Updating query to include both related tag assets anbd related owner assests when <3. SHowing results as a list of links * creating minimal asset teaser * removing duplicate filters * Changing minimal to noDescription * Removing unneccessary use of noDescription prop * Adding minimal prop back into Publisher * Removing props from RelatedAssets component * Getting data from asset context * refactor * space-saving asset teaser changes * remove price from output * increase to 4 * refactor for better loading experience * css cleanup * filter out duplicates when merging results * basic render test * try/catch, secure against null query responses * different test tactic Co-authored-by: Matthias Kretschmann <m@kretschmann.io>
21 lines
588 B
TypeScript
21 lines
588 B
TypeScript
import marketMetadata from '../__fixtures__/marketMetadata'
|
|
import userPreferences from '../__fixtures__/userPreferences'
|
|
import web3 from '../__fixtures__/web3'
|
|
import { asset } from '../__fixtures__/assetWithAccessDetails'
|
|
|
|
jest.mock('../../src/@context/MarketMetadata', () => ({
|
|
useMarketMetadata: () => marketMetadata
|
|
}))
|
|
|
|
jest.mock('../../src/@context/UserPreferences', () => ({
|
|
useUserPreferences: () => userPreferences
|
|
}))
|
|
|
|
jest.mock('../../src/@context/Web3', () => ({
|
|
useWeb3: () => web3
|
|
}))
|
|
|
|
jest.mock('../../../@context/Asset', () => ({
|
|
useAsset: () => ({ asset })
|
|
}))
|