gpt4 book ai didi

javascript - 修改/更改 'example-spec.js' 时, Cypress 测试运行程序不会立即运行

转载 作者:行者123 更新时间:2023-11-30 14:23:32 24 4
gpt4 key购买 nike

当“example-spec.js”被修改/更改时, Cypress 测试运行器不会立即运行。测试运行器的版本是 Chrome 68 和 Cypress 中的 Electron 59。 cypress 的安装版本是 3.1.0。还使用 atom.js 编辑器。台式机是Windows 8.1 Pro

在命令提示符下,我首先运行此命令转到此目录“cd C:\node_modules.bin”,然后运行“cypress open”。这将打开 cypress 应用程序。

下面的文件夹目录和截图添加

C:\node_modules.bin\cypress\integration\examples\example-spec.js

在应用程序设置 > 配置 > 下面给出的 json 设置中

{
animationDistanceThreshold: 5,
baseUrl: null,
blacklistHosts: null,
chromeWebSecurity: true,
defaultCommandTimeout: 4000,
env: {},
execTimeout: 60000,
fileServerFolder: '',
fixturesFolder: 'cypress/fixtures',
hosts: null,
integrationFolder: 'cypress/integration',
modifyObstructiveCode: true,
numTestsKeptInMemory: 50,
pageLoadTimeout: 60000,
pluginsFile: 'cypress/plugins',
port: null,
reporter: 'spec',
reporterOptions: null,
requestTimeout: 5000,
responseTimeout: 30000,
screenshotsFolder: 'cypress/screenshots',
supportFile: 'cypress/support',
taskTimeout: 60000,
testFiles: '**/*.*',
trashAssetsBeforeRuns: true,
userAgent: null,
video: true,
videoCompression: 32,
videoUploadOnPasses: true,
videosFolder: 'cypress/videos',
viewportHeight: 660,
viewportWidth: 1000,
waitForAnimations: true,
watchForFileChanges: true}

enter image description here

最佳答案

看起来您正在修改 Cypress 安装中的测试文件。这可能不是您的本意。

Cypress 有两个重要的组件:

  1. Cypress 包安装。在您的情况下,它安装在 c:\node_modules\.bin\cypress
  2. 被测项目还有一些Cypress相关的文件,包括项目顶层目录cypress.json,以及项目目录下cypress文件夹下的测试文件(除非你告诉柏树使用不同的目录)。

当您在项目上运行 Cypress 测试时,被监视的测试文件是那些位于项目目录中的文件——而不是那些在 Cypress 安装本身中的文件。

当你运行 cypress open 然后你可以手动选择你想要测试的项目目录,假设它是 C:\MY_PROJECT 。如果没有 cypress.json 文件并且没有找到测试,Cypress 将自动在 C:\MY_PROJECT 内创建一个 cypress.json 文件和一个 cypress 目录。在 C:\MY_PROJECT\cypress\integration\ 目录中将有一些示例测试。当您在此目录中使用 watchForFileChanges=true 编辑测试并手动选择 C:\MY_PROJECT 进行测试时,它们将在保存时自动重新运行。

我还测试了在 node_modules 目录下的 Cypress 包内的示例目录中运行和修改测试。我可以确认,当该目录中的文件被编辑时,测试不会重新运行。但是,在您尝试测试您自己的项目之一时编辑这些文件是错误的。

HTH

关于javascript - 修改/更改 'example-spec.js' 时, Cypress 测试运行程序不会立即运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52320464/

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