38d9ab67eb
* test(e2e): split e2e commands/setup * test(e2e): consolidate tests * test(e2e): simplify * test(e2e): mv token details tests to appropriate spec * test(e2e): rm obsolete constant * test(e2e): comments * test(e2e): do not wait for animations
42 lines
1.6 KiB
TypeScript
42 lines
1.6 KiB
TypeScript
// @ts-ignore
|
|
import TokenListJSON from '@uniswap/default-token-list'
|
|
|
|
beforeEach(() => {
|
|
// Many API calls enforce that requests come from our app, so we must mock Origin and Referer.
|
|
cy.intercept('*', (req) => {
|
|
req.headers['referer'] = 'https://app.uniswap.org'
|
|
req.headers['origin'] = 'https://app.uniswap.org'
|
|
})
|
|
|
|
// Infura uses a test endpoint, which allow-lists http://localhost:3000 instead.
|
|
cy.intercept(/infura.io/, (req) => {
|
|
req.headers['referer'] = 'http://localhost:3000'
|
|
req.headers['origin'] = 'http://localhost:3000'
|
|
req.alias = req.body.method
|
|
req.continue()
|
|
})
|
|
|
|
// Mock analytics responses to avoid analytics in tests.
|
|
cy.intercept('https://api.uniswap.org/v1/amplitude-proxy', (req) => {
|
|
const requestBody = JSON.stringify(req.body)
|
|
const byteSize = new Blob([requestBody]).size
|
|
req.reply(
|
|
JSON.stringify({
|
|
code: 200,
|
|
server_upload_time: Date.now(),
|
|
payload_size_bytes: byteSize,
|
|
events_ingested: req.body.events.length,
|
|
})
|
|
)
|
|
}).intercept('https://*.sentry.io', { statusCode: 200 })
|
|
|
|
// Mock our own token list responses to avoid the latency of IPFS.
|
|
cy.intercept('https://gateway.ipfs.io/ipns/tokens.uniswap.org', TokenListJSON)
|
|
.intercept('https://gateway.ipfs.io/ipns/extendedtokens.uniswap.org', { statusCode: 404 })
|
|
.intercept('https://gateway.ipfs.io/ipns/unsupportedtokens.uniswap.org', { statusCode: 404 })
|
|
|
|
// Reset hardhat between tests to ensure isolation.
|
|
// This resets the fork, as well as options like automine.
|
|
cy.hardhat().then((hardhat) => hardhat.reset())
|
|
})
|