dceky 1.0.18 → 1.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dceky",
3
- "version": "1.0.18",
3
+ "version": "1.0.19",
4
4
  "description": "Cypress toolkit for Harvard DCE",
5
5
  "main": "./lib/src/index.js",
6
6
  "types": "./lib/src/index.d.ts",
@@ -65,12 +65,12 @@ const typeInto = () => {
65
65
  if (append) {
66
66
  cy
67
67
  .get(item)
68
- .type(textWithoutTrailingEnter);
68
+ .type(textWithoutTrailingEnter, { parseSpecialCharSequences: false });
69
69
  } else {
70
70
  cy
71
71
  .get(item)
72
72
  .clear()
73
- .type(textWithoutTrailingEnter);
73
+ .type(textWithoutTrailingEnter, { parseSpecialCharSequences: false });
74
74
  }
75
75
 
76
76
  // Press enter if explicitly requested or if text ended with newline
@@ -106,6 +106,7 @@ const genConfiguration = () => {
106
106
  // Return the configuration object
107
107
  return defineConfig({
108
108
  e2e: {
109
+ experimentalWebKitSupport: true,
109
110
  experimentalOriginDependencies: true,
110
111
  baseUrl,
111
112
  env: finalEnv,