如何防止 VSCode 自动将 WebdriverIO 和 Mocha.js 代码括在括号中?

问题描述 投票:0回答:1

我尝试在 VSCode 上使用 WebdriverIO 和 Mocha.js 编写一些测试,但是当我编写代码时,VSCode 会自动用括号将代码括起来,这会使我的代码失败。

如何关闭此功能?

当我这样编写代码时,它找不到该元素(因为我认为是异步模式。) I don't want these parentheses but VSCode automatically adds them

当我这样编写代码时,所有按钮都点击没有任何问题。 When I write the code like this, all the buttons are clicked without any problem.

javascript testing automation mocha.js webdriver-io
1个回答
0
投票

解决此问题的一个简单解决方案是:

  1. 转到 VSCode 设置
  2. 在搜索栏中输入“javascript”
  3. 在左侧菜单中,单击“TypeScript”
  4. 在右侧向下滚动到“JavaScipt 建议:”,然后尝试所附图像中突出显示的选项。

© www.soinside.com 2019 - 2024. All rights reserved.