gpt4 book ai didi

angular - 如何在 cypress typescript 项目中正确导入自定义命令?

转载 作者:行者123 更新时间:2023-12-02 03:13:34 25 4
gpt4 key购买 nike

更新我的核心依赖项@nrwl/、@angular/ 和 cypress 后,我的 e2e 测试有点崩溃。我收到以下错误:

导入'./command';
^
ParseError: 'import' 和 'export' 可能只与 'sourceType: module' 一起出现

Cypress 还显示此错误:enter image description here

这些是更新的依赖项: enter image description here

在更新之前,我们只是直接从规范文件中的 command.ts 文件导入自定义命令。但也通过使用 support/index.ts 出现相同的错误,但随后在索引文件中。

唯一可行的方法(但实际上不能成为解决方案)是将自定义命令移动到索引文件本身并删除导入语句。

因为我在 NX-Workspace 中运行这些测试,所以我无法直接访问任何 webpack 或 babel 配置或类似的东西。

任何提示或想法,我可以尝试什么?

最佳答案

我自己找到了解决方案。问题是,我缺少 typescript 预处理器

我不知道为什么,但直到 NX 7.4 版(或更高版本),才没有必要定义插件文件。 NX 以某种方式掩盖了这一点。

这是我必须改变的:

// plugins/index.js
// ***********************************************************
// This example plugins/index.js can be used to load plugins
//
// You can change the location of this file or turn off loading
// the plugins file with the 'pluginsFile' configuration option.
//
// You can read more here:
// https://on.cypress.io/plugins-guide
// ***********************************************************

// This function is called when a project is opened or re-opened (e.g. due to
// the project's config changing)

const { preprocessTypescript } = require('@nrwl/cypress/plugins/preprocessor');

module.exports = (on, config) => {
// `on` is used to hook into various events Cypress emits
// `config` is the resolved Cypress config

// Preprocess Typescript
on('file:preprocessor', preprocessTypescript(config));
};

并引用 cypress.json 中的文件:

{
"fileServerFolder": "./",
"fixturesFolder": "./src/fixtures",
"integrationFolder": "./src/integration",
"pluginsFile": "./src/plugins/index",
"supportFile": "./src/support/index.ts"
}

关于angular - 如何在 cypress typescript 项目中正确导入自定义命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56832134/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com