2021-06-07 16:36:41 +02:00
|
|
|
describe('Bisq', () => {
|
|
|
|
beforeEach(() => {
|
2021-06-07 21:48:27 +02:00
|
|
|
|
|
|
|
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');
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
it('loads the dashboard', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/bisq');
|
|
|
|
|
|
|
|
cy.wait('@socket');
|
|
|
|
cy.wait('@hloc');
|
|
|
|
cy.wait('@ticker');
|
|
|
|
cy.wait('@markets');
|
|
|
|
cy.wait('@7d');
|
|
|
|
cy.wait('@trades');
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
|
|
|
|
it('loads the transactions screen', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/bisq');
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('li:nth-of-type(2) > a').click().then(() => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.wait('@txs');
|
|
|
|
});
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
it('loads the blocks screen', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/bisq');
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('li:nth-of-type(3) > a').click().then(() => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.wait('@blocks');
|
|
|
|
});
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
it('loads the stats screen', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/bisq');
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('li:nth-of-type(4) > a').click().then(() => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.wait('@stats');
|
|
|
|
});
|
|
|
|
});
|
2021-06-07 16:36:41 +02:00
|
|
|
|
|
|
|
it('loads the api screen', () => {
|
2021-06-07 21:48:27 +02:00
|
|
|
cy.visit('/bisq');
|
2021-06-07 16:36:41 +02:00
|
|
|
cy.get('li:nth-of-type(5) > a').click().then(() => {
|
|
|
|
|
2021-06-07 21:48:27 +02:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2021-07-05 21:28:56 +02:00
|
|
|
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);
|
|
|
|
});
|
|
|
|
|
2021-06-07 21:48:27 +02:00
|
|
|
});
|