This repository was archived by the owner on Sep 1, 2024. It is now read-only.
@unflakable/cypress-plugin 0.1.2
Bug Fixes
-
Fix compatibility with CommonJS TypeScript projects (5f8dd7c).
Previously, TypeScript projects using CommonJS needed to set
moduleResolution
tonode16
ornodenext
to successfully load the plugin's Cypress config wrapper. This change adds a synchronous CommonJS version of the config wrapper, whichcypress-unflakable
now uses unless the project'spackage.json
contains"type": "module"
or the user's Cypress config file has a.mjs
/.mts
extension, in which case it uses the existing ESM config wrapper.