问题 I have this in package.json file: { "name": "test demo", "version": "1.0.0", "description": "test demo scripts", "scripts": { "test:v1": "wdio src/resources/config/wdio.chrome.conf.js --spec test/Tests.spec.ts", "test:v2": "wdio src/resources/config/wdio.firefox.conf.js --spec test/Tests.spec.ts", "test": "npm run test:v1 && npm run test:v2" }, ... } When run this command: npm run test then if test:v1 fails, then test:v2 script is not executed at all. Is there a way to configure this so that