Skip to content

Commit

Permalink
chore: rename example 29 title
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Aug 20, 2024
1 parent f4773bb commit af390b5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion examples/vite-demo-vanilla-bundle/src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ <h4 class="is-size-4 has-text-white">Slickgrid-Universal</h4>
Example28 - Infinite Scroll from JSON data
</a>
<a class="navbar-item" onclick.delegate="loadRoute('example29')">
Example29 - Row Reordering & Drag to Delete
Example29 - Row Reordering & Drag to Recycle Bin
</a>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<h3 class="title is-3">
Example 29 - Row Reordering & Drag to Delete
Example 29 - Row Reordering & Drag to Recycle Bin

<div class="subtitle code-link">
<span class="is-size-6">see</span>
Expand Down
4 changes: 2 additions & 2 deletions test/cypress/e2e/example29.cy.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
describe('Example 29 - Row Reordering & Drag to Delete', () => {
describe('Example 29 - Row Reordering & Drag to Recycle Bin', () => {
const GRID_ROW_HEIGHT = 33;
const titles = ['', 'Name', 'Complete'];

it('should display Example title', () => {
cy.visit(`${Cypress.config('baseUrl')}/example29`);
cy.get('h3').should('contain', 'Example 29 - Row Reordering & Drag to Delete');
cy.get('h3').should('contain', 'Example 29 - Row Reordering & Drag to Recycle Bin');
});

it('should have exact Column Titles in the grid', () => {
Expand Down

0 comments on commit af390b5

Please sign in to comment.