Skip to content

Commit 04ee86b

Browse files
committed
PR comments
1 parent 41e08de commit 04ee86b

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

guides/cy-prompt-development.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ To run against a deployed version of `cy.prompt`:
2020

2121
- Set:
2222
- `CYPRESS_INTERNAL_ENV=<environment>` (e.g. `staging` or `production` if you want to hit those deployments of `cypress-services` or `development` if you want to hit a locally running version of `cypress-services`)
23-
```
2423

2524
## Testing
2625

packages/driver/src/cy/commands/prompt/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default (Commands, Cypress, cy) => {
5656
return await cloud.cyPrompt(Cypress, message)
5757
} catch (error) {
5858
// TODO: handle this better
59-
throw new Error('CyPromptDriver not found')
59+
throw new Error(`CyPromptDriver not found: ${error}`)
6060
}
6161
},
6262
})

0 commit comments

Comments
 (0)