mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-23 00:56:33 +03:00
20 lines
600 B
TypeScript
20 lines
600 B
TypeScript
|
describe('Supporting both operation/* and parent/*/operation* urls', () => {
|
||
|
beforeEach(() => {
|
||
|
cy.visit('e2e/standalone.html');
|
||
|
});
|
||
|
|
||
|
it('should supporting operation/* url', () => {
|
||
|
cy.url().then(loc => {
|
||
|
cy.visit(loc + '#operation/updatePet');
|
||
|
cy.get('li[data-item-id="tag/pet/operation/updatePet"]').should('be.visible');
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should supporting parent/*/operation url', () => {
|
||
|
cy.url().then(loc => {
|
||
|
cy.visit(loc + '#tag/pet/operation/addPet');
|
||
|
cy.get('li[data-item-id="tag/pet/operation/addPet"]').should('be.visible');
|
||
|
});
|
||
|
});
|
||
|
});
|