Release v1.1.6
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:
Important
Convert Cypress test suite from JavaScript to TypeScript, updating file extensions and adding TypeScript references and types.
- File Renames:
- Rename
.jsfiles to.tsincypress/integration/navigation,cypress/integration/theme/davids,cypress/integration/theme/default,cypress/pages, andcypress/support.
- Rename
- TypeScript Integration:
- Add
/// <reference types="cypress" />to all.tsfiles for TypeScript support. - Add type annotations in
themeDavidsPage.cy.tsande2e.ts. - Create
index.d.tsto declare custom Cypress commands.
- Add
- Configuration Changes:
- Update
cypress.config.jsto usesupportFile: "./cypress/support/e2e.ts".
- Update
This description was created by for 6c51dde. You can customize this summary. It will automatically update as commits are pushed.