-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[docs] Document jsm usage: Can't reexport the named export 'BREAK' #20
Comments
Yeah, that's because by default cypress is not allowing
|
This error looks like missing import configuration for |
So how do I use this? There are no docs for how to use it, besides to use 'import "cypress-graphql-mock"'. What bits from your sample do I need to port into my code-base? |
Feel free to use for docs: --- a/cypress/plugins/cy-ts-preprocessor.js
+++ b/cypress/plugins/cy-ts-preprocessor.js
@@ -1,17 +1,26 @@
+/* eslint-disable @typescript-eslint/no-var-requires */
const wp = require('@cypress/webpack-preprocessor')
const webpackOptions = {
resolve: {
- extensions: ['.ts', '.js']
+ extensions: ['.ts', '.js', '.mjs', '.jsx', '.tsx', '.json']
},
module: {
rules: [
{
- test: /\.ts$/,
+ test: /\.mjs$/,
+ include: /node_modules/,
+ type: "javascript/auto",
+ },
+ {
+ test: /\.tsx?$/,
exclude: [/node_modules/],
use: [
{
- loader: 'ts-loader'
+ loader: 'ts-loader',
+ options: {
+ transpileOnly: true,
+ }
}
]
} diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json
index 3252828..fbbbbcc 100644
--- a/cypress/tsconfig.json
+++ b/cypress/tsconfig.json
@@ -1,13 +1,16 @@
{
"compilerOptions": {
"strict": true,
+ "sourceMap": true,
"baseUrl": "../node_modules",
"target": "es5",
- "lib": ["es5", "dom"],
+ "lib": ["es5", "es2016", "dom"],
"types": ["cypress"],
- "esModuleInterop": true
+ "resolveJsonModule": true,
+ "moduleResolution": "node",
+ "esModuleInterop": true,
+ "jsx": "react",
+ "experimentalDecorators": true
},
- "include": [
- "**/*.ts"
- ]
+ "include": [ "**/*.ts" ]
} --- a/package.json
+++ b/package.json
@@ -163,6 +163,7 @@
"babel-plugin-macros": "^2.6.1",
"babel-plugin-module-resolver": "^3.2.0",
"cypress": "3.4.1",
+ "cypress-graphql-mock": "^0.5.0-alpha.4",
"eslint": "^6.1.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1", --- a/yarn.lock
+++ b/yarn.lock
@@ -4754,6 +4754,14 @@ cyclist@~0.2.2:
resolved "https://registry.yarnpkg.com/cyclist/-/cyclist-0.2.2.tgz#1b33792e11e914a2fd6d6ed6447464444e5fa640"
integrity sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=
+cypress-graphql-mock@^0.5.0-alpha.4:
+ version "0.5.0-alpha.4"
+ resolved "https://registry.yarnpkg.com/cypress-graphql-mock/-/cypress-graphql-mock-0.5.0-alpha.4.tgz#8871ba12e7beb1658a46caa5e0a26d788b9d1307"
+ integrity sha512-dgsczorpXRyG0Jak0N8RdNcyJv+9FPE1cS9UlKEx8g+JBABZF3mVDjpzksnWDvSAUHGrhD+nHFgtgqMXojQVAw==
+ dependencies:
+ graphql-tools "^4.0.3"
+ tslib "^1.9.3"
+
[email protected]:
version "3.4.1"
resolved "https://registry.yarnpkg.com/cypress/-/cypress-3.4.1.tgz#ca2e4e9864679da686c6a6189603efd409664c30"
@@ -6665,7 +6673,7 @@ [email protected]:
tslib "^1.9.3"
valid-url "1.0.9"
-[email protected], graphql-tools@^4.0.0:
+[email protected], graphql-tools@^4.0.0, graphql-tools@^4.0.3:
version "4.0.5"
resolved "https://registry.yarnpkg.com/graphql-tools/-/graphql-tools-4.0.5.tgz#d2b41ee0a330bfef833e5cdae7e1f0b0d86b1754"
integrity sha512-kQCh3IZsMqquDx7zfIGWBau42xe46gmqabwYkpPlCLIjcEY1XK+auP7iGRD9/205BPyoQdY8hT96MPpgERdC9Q== |
When following the readme; 1) install, 2) add import to commands.js, 3) save a
.ts
test file.The text was updated successfully, but these errors were encountered: