mirror of
https://github.com/mempool/mempool.git
synced 2025-01-01 03:04:27 +01:00
1e9f131a2a
* Fix pagination responsive css. * Fix css title block transaction alignment. * Add pagination responsive layout to bisq tx page. * Add pagination responsive to bisq blocks page. * Fix pagination css - bisq txs page. * Add e2e tests for bisq and mainnet pagination.
66 lines
2.1 KiB
TypeScript
66 lines
2.1 KiB
TypeScript
describe('Bisq', () => {
|
|
beforeEach(() => {
|
|
|
|
cy.intercept('/sockjs-node/info*').as('socket');
|
|
cy.intercept('/bisq/api/markets/hloc?market=btc_usd&interval=day').as('hloc');
|
|
cy.intercept('/bisq/api/markets/ticker').as('ticker');
|
|
cy.intercept('/bisq/api/markets/markets').as('markets');
|
|
cy.intercept('/bisq/api/markets/volumes/7d').as('7d');
|
|
cy.intercept('/bisq/api/markets/trades?market=all').as('trades');
|
|
cy.intercept('/bisq/api/txs/*/*').as('txs');
|
|
cy.intercept('/bisq/api/blocks/*/*').as('blocks');
|
|
cy.intercept('/bisq/api/stats').as('stats');
|
|
});
|
|
it('loads the dashboard', () => {
|
|
cy.visit('/bisq');
|
|
|
|
cy.wait('@socket');
|
|
cy.wait('@hloc');
|
|
cy.wait('@ticker');
|
|
cy.wait('@markets');
|
|
cy.wait('@7d');
|
|
cy.wait('@trades');
|
|
});
|
|
|
|
it('loads the transactions screen', () => {
|
|
cy.visit('/bisq');
|
|
cy.get('li:nth-of-type(2) > a').click().then(() => {
|
|
cy.wait('@txs');
|
|
});
|
|
});
|
|
it('loads the blocks screen', () => {
|
|
cy.visit('/bisq');
|
|
cy.get('li:nth-of-type(3) > a').click().then(() => {
|
|
cy.wait('@blocks');
|
|
});
|
|
});
|
|
it('loads the stats screen', () => {
|
|
cy.visit('/bisq');
|
|
cy.get('li:nth-of-type(4) > a').click().then(() => {
|
|
cy.wait('@stats');
|
|
});
|
|
});
|
|
|
|
it('loads the api screen', () => {
|
|
cy.visit('/bisq');
|
|
cy.get('li:nth-of-type(5) > a').click().then(() => {
|
|
|
|
});
|
|
});
|
|
|
|
it('shows blocks pagination with 5 pages (desktop)', () => {
|
|
cy.viewport(760, 800);
|
|
cy.visit('/bisq/transactions');
|
|
// 5 pages + 4 buttons = 9 buttons
|
|
cy.get('.pagination-container ul.pagination').first().children().should('have.length', 9);
|
|
});
|
|
|
|
it('shows blocks pagination with 3 pages (mobile)', () => {
|
|
cy.viewport(669, 800);
|
|
cy.visit('/bisq/blocks');
|
|
// 3 pages + 4 buttons = 7 buttons
|
|
cy.get('.pagination-container ul.pagination').first().children().should('have.length', 7);
|
|
});
|
|
|
|
});
|