Cypress testIsolation 属性的类型

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

Cypress 12 中引入了一个名为

testIsolation
的属性。我目前正在从 11 升级到 13。该属性显然是一个字符串:

(property) testIsolation?: "on" | "off" | null | undefined

但是当我使用“on”时出现 TypeScript 错误

cypress.config.ts(72,9): error TS2322: Type 'string' is not assignable to type 'boolean | undefined'.

那么它是布尔值还是字符串?在 Cypress 文档 中,它看起来像是一个布尔值,但不被接受。

我需要以某种方式将 cypress 类型传达给 TypeScript 吗?

typescript cypress
1个回答
0
投票

Cypress 团队在 Cypress 12 中将类型从字符串更改为布尔值。

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