如何在Cypress中使用Next.js中的SWC(而不是babel)来检测代码?

eivgtgni  于 5个月前  发布在  Babel
关注(0)|答案(2)|浏览(84)

我将Cypress集成到我的项目中进行测试,一切都很顺利。然而,当我想让代码覆盖率时,我找不到解决问题的方法。
在Next.js 13中,它不支持.babelrc,而是支持SWC。但是,* Istanbul * 需要.babelrc作为配置!
请阅读GitHub discussion
如果我配置.babelrc并运行Cypress测试和构建脚本:

"cypress-open-component": "cypress open --component",

  "cypress-open-e2e": "npm run instrument && cypress open --e2e",

  "cypress-run-component": "npm run instrument && cypress run --component --spec src/components/core/*/*.cy.tsx --headless",

  "instrument": "npx nyc instrument --compact=false src  instrumented",

  "coverage-report": "npx nyc report --reporter=html"

  "build": "mv .babelrc.js .babel_ && next build; mv .babel_ .babelrc.js",

  "start": "next start",

  "lint": "next lint",

字符串
他们工作得很好。
但是,当我运行npm run dev时:

"dev": "next dev",


我得到一个错误:

info Using external babel configuration from /home/alaeddine/Desktop/gersthofen-app/.babelrc.js
- error ./src/app/layout.tsx:2:1
Syntax error: "next/font" requires SWC although Babel is being used due to a custom babel config being present.
Read more: https://nextjs.org/docs/messages/babel-font-loader-conflict
<w> [webpack.cache.PackFileCacheStrategy] Restoring pack failed from /home/alaeddine/Desktop/gersthofen-app/.next/cache/webpack/client-development-fallback.pack.gz: Error: incorrect header check
- wait compiling /_error (client and server)...
- error ./src/app/layout.tsx:2:1
Syntax error: "next/font" requires SWC although Babel is being used due to a custom babel config being present.
Read more: https://nextjs.org/docs/messages/babel-font-loader-conflict


对于构建脚本,我使用了the solution,但我认为这是一个棘手的解决方案。

两种选择

如果我将.babelrc.js更改为.babelrc.build.jsnpm run dev工作得很好,因为它忽略了Babel文件,但Cypress文件失败了:
npm run cypress-run-component

(Run Starting)

  ┌────────────────────────────────────────────────────────────────────────────────────────────────┐
  │ Cypress:        12.17.3                                                                        │
  │ Browser:        Electron 106 (headless)                                                        │
  │ Node Version:   v18.15.0 (/home/alaeddine/.nvm/versions/node/v18.15.0/bin/node)                │
  │ Specs:          1 found (indexButton.cy.tsx)                                                   │
  │ Searched:       src/components/core/Button/indexButton.cy.tsx                                  │
  └────────────────────────────────────────────────────────────────────────────────────────────────┘

────────────────────────────────────────────────────────────────────────────────────────────────────

  Running:  indexButton.cy.tsx                                                              (1 of 1)
17 assets
65 modules

ERROR in ./src/components/core/Button/index.tsx:14:1
Syntax error: Unexpected token, expected ","

  12 |   loading,
  13 |   icon,
> 14 | }: IButtonProps) => {
     |  ^
  15 |   const {
  16 |     button,
  17 |     primary,

client (webpack 5.86.0) compiled with 1 error in 6654 ms

  1) An uncaught error was detected outside of a test


请问,我如何使用Cypress在Next.js 13中进行代码覆盖?

文件 cypress.config.ts

import { defineConfig } from "cypress";

export default defineConfig({
  component: {
    devServer: {
      framework: "next",
      bundler: "webpack",
      webpackConfig: {
        mode: "development",
        devtool: false,
        module: {
          rules: [
            // application and Cypress files are bundled like React components
            // and instrumented using the babel-plugin-istanbul
            // (we will filter the code coverage for non-application files later)
            {
              test: /\.tsx$/,
              exclude: /node_modules/,
              use: {
                loader: "babel-loader",
                options: {
                  presets: ["@babel/preset-env", "@babel/preset-react"],
                  plugins: [
                    // we could optionally insert this plugin
                    // only if the code coverage flag is on
                    "istanbul",
                  ],
                },
              },
            },
          ],
        },
      },
    },
    // Instrument the code
    setupNodeEvents(on, config) {
      require("@cypress/code-coverage/task")(on, config);

      return config;
    },
  },

  e2e: {
    setupNodeEvents(on, config) {
      // implement node event listeners here
    },
  },
  video: false,
});

文件 next.config.ts

/** @type {import('next').NextConfig} */
const nextConfig = {
  async rewrites() {
    if (process.env.NODE_ENV === "development") {
      return [
        {
          source: "/components",
          destination: "/page",
        },
      ];
    }

    return [];
  },
};

module.exports = nextConfig;

lc8prwob

lc8prwob1#

我建议使用swc-plugin-coverage-instrument。
1.创建覆盖。我建议按照Cypress documentation。忽略Babel指令。设置@cypress/code-coverage。当你测试运行时,它应该会显示一些关于覆盖的内容。图像在文档中。
1.我建议使用swc-plugin-coverage-instrument,所以步骤是:

yarn add --dev swc-plugin-coverage-instrument

next.config.js
  experimental: {
    swcPlugins: [["swc-plugin-coverage-instrument", {}]],
  },

个字符
它甚至可以与应用程序路由器与一些调整here
这里有some examples

nhn9ugyo

nhn9ugyo2#

https://github.com/kwonoj/swc-plugin-coverage-instrument
您可以使用SWC的伊斯坦布尔港;然而,这个问题非常重要IMO:https://github.com/kwonoj/swc-plugin-coverage-instrument/issues/197
或者,您可以使用babel,但仅适用于process.env.NODE_ENV === 'test';(请参阅Can I Get Next.Js to exclude .babelrc during build?)。

相关问题