📜  cypress 只测试一个文件 - 任何代码示例

📅  最后修改于: 2022-03-11 14:59:03.940000             🧑  作者: Mango

代码示例1
cypress run --spec path/to/file.spec.js

// Ex: package.json
{
    "scripts": {
        "unit-testing": "cypress run --spec path/to/file.spec.js"
    }
}

// npm run unit-testing