Compare commits

...
Author SHA1 Message Date
Dariusz Majcherczyk 2f54c4f1d7 test: update before 2023-06-23 14:19:50 +02:00
Dariusz Majcherczyk 2454332f09 test: added ac 2023-06-23 13:23:33 +02:00
Dariusz Majcherczyk 66fc31b6c5 test: chart depth e2e tests 2023-06-23 12:01:35 +02:00
@@ -0,0 +1,15 @@
describe('charts', { tags: '@smoke' }, () => {
before(() => {
cy.mockTradingPage();
cy.mockSubscription();
cy.visit('/#/markets/market-0');
cy.wait('@Markets');
cy.getByTestId('Depth').click();
});
it('can see market depth chart', () => {
// 6006-DEPC-001
cy.getByTestId('tab-depth').should('be.visible');
cy.get('.depth-chart-module_canvas__260De').should('be.visible');
});
});