Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: merge master (a37ab762f) into develop #15412

Merged
merged 8 commits into from
Mar 13, 2021
1 change: 0 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1056,7 +1056,6 @@ jobs:
- run:
name: Run tests
command: yarn workspace @cypress/webpack-dev-server test

npm-vite-dev-server:
<<: *defaults
steps:
Expand Down
14 changes: 13 additions & 1 deletion npm/vite-dev-server/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# ⚡️ + 🌲 Cypress Component Testing w/ Vite

> **Note** this package is not meant to be used outside of cypress component testing.
To install vite in you component testing environment,
1. Install it `yarn add @cypress/vite-dev-server`
2. Add it to `cypress/plugins/index.js`

```js
import { startDevServer } from '@cypress/vite-dev-server'

module.exports = (on, config) => {
on('dev-server:start', async (options) => startDevServer({ options }))

return config
}
```
2 changes: 2 additions & 0 deletions npm/vue/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -743,6 +743,8 @@ module.exports = (on, config) => {
The Cypress.io Component Testing Team

- [Jessica Sachs](https://github.com/jessicasachs) (Current Maintainer, [Vue Test Utils](https://github.com/vuejs/vue-test-utils) Maintainer)
- [Lachlan Miller](https://github.com/lmiller1990) (Current Maintainer, [Vue Test Utils](https://github.com/vuejs/vue-test-utils) Maintainer)
- [Bart Ledoux](https://github.com/elevatebart) (Current Maintainer, [Vue Styleguidist](https://github.com/vue-styleguidist/vue-styleguidist) Maintainer)
- [Gleb Bahmutov](https://github.com/bahmutov) (Original Author, Current Maintainer of [@cypress/react](https://github.com//cypress-io/@cypress/react))

Support: if you find any problems with this module, [tweet](https://twitter.com/_jessicasachs) / [open issue](https://github.com/cypress-io/cypress/issues) on Github
Expand Down
2 changes: 2 additions & 0 deletions npm/webpack-dev-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

> **Note** this package is not meant to be used outside of cypress component testing.

Install `@cypress/vue` or `@cypress/react` to get this package working properly

## Responsibilities

- Make a `webpack.config` from the users setup
Expand Down