mirror of
https://github.com/Redocly/redoc.git
synced 2025-03-10 21:05:47 +03:00
13 lines
304 B
TypeScript
13 lines
304 B
TypeScript
describe('Schema View', () => {
|
|
beforeEach(() => {
|
|
cy.visit('e2e/standalone.html');
|
|
});
|
|
|
|
it('Pet schema view should match screenshot', () => {
|
|
cy.get('[data-section-id="operation/addPet"] table')
|
|
.last()
|
|
.scrollIntoView()
|
|
.matchImageSnapshot('pet-schema-view');
|
|
});
|
|
});
|