Skip to content

Release v1.1.6

Choose a tag to compare

@github-actions github-actions released this 29 Aug 00:38
· 5 commits to develop since this release

What's Changed

Version 1.1.6 includes the following changes:

This release includes changes from merged pull request #141.

Changes

feat: use TS for Cypress.

Thank you for submitting a PR! Please review & check the boxes below:

  • I have filled in the "Description" section below.
  • I have provided manual testing steps and screenshots (if applicable).
  • My code is covered by automated tests.

Description

Updates Cypress test suite to use .ts files instead of .js

Steps to Test

Checkout local, run npm run build and npm start followed by npm run test:cypress:

image

Important

Convert Cypress test suite from JavaScript to TypeScript, updating file extensions and adding TypeScript references and types.

  • File Renames:
    • Rename .js files to .ts in cypress/integration/navigation, cypress/integration/theme/davids, cypress/integration/theme/default, cypress/pages, and cypress/support.
  • TypeScript Integration:
    • Add /// <reference types="cypress" /> to all .ts files for TypeScript support.
    • Add type annotations in themeDavidsPage.cy.ts and e2e.ts.
    • Create index.d.ts to declare custom Cypress commands.
  • Configuration Changes:
    • Update cypress.config.js to use supportFile: "./cypress/support/e2e.ts".

This description was created by Ellipsis for 6c51dde. You can customize this summary. It will automatically update as commits are pushed.