Skip to content

Commit

Permalink
chore: remove Remote Example & replace with Import from CSV
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Jan 19, 2025
1 parent c998507 commit ce85f81
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
describe('Example 43 - Dynamically Create Grid from CSV / Excel import', () => {
describe('Example 17 - Dynamically Create Grid from CSV / Excel import', () => {
const defaultCsvTitles = ['First Name', 'Last Name', 'Age', 'Type'];
const GRID_ROW_HEIGHT = 33;

it('should display Example title', () => {
cy.visit(`${Cypress.config('baseUrl')}/example43`);
cy.get('h2').should('contain', 'Example 43: Dynamically Create Grid from CSV / Excel import');
cy.visit(`${Cypress.config('baseUrl')}/example17`);
cy.get('h2').should('contain', 'Example 17: Dynamically Create Grid from CSV / Excel import');
});

it('should load default CSV file and expect default column titles', () => {
Expand Down

0 comments on commit ce85f81

Please sign in to comment.