File tree Expand file tree Collapse file tree 1 file changed +27
-4
lines changed Expand file tree Collapse file tree 1 file changed +27
-4
lines changed Original file line number Diff line number Diff line change 1
1
# @vue/cli-ui
2
2
3
- Start development version:
3
+ ### Local development
4
+
5
+ Before starting a local cli-ui instance,
6
+ consider following the [ contributing guide] ( https://github.com/vuejs/vue-cli/blob/dev/.github/CONTRIBUTING.md )
7
+ in order to download all required dependencies of vue-cli's packages.
8
+
9
+ Just after, you should build once then serve ` @vue/cli-ui-addon-webpack ` by running:
10
+ ``` bash
11
+ cd ../cli-ui-addon-webpack
12
+ yarn build # just do once
13
+ yarn serve
14
+ ```
15
+
16
+ Then you start the ui server (based on Apollo):
17
+
18
+ ```
19
+ cd ../cli-ui
20
+ yarn run apollo
21
+ ```
22
+
23
+ And then in another terminal, you should serve the ui web app:
4
24
5
25
```
6
26
yarn run serve
7
27
```
8
28
9
- In another terminal:
29
+ #### Testing
30
+
31
+ For running E2E tests, you just need to run:
10
32
11
33
```
12
- yarn run apollo
34
+ yarn run test:e2e
13
35
```
14
36
15
- You also need to build ` @vue/cli-ui-addon-webpack ` .
37
+ This will open a new [ Cypress] ( https://www.cypress.io/ ) window.
38
+ You can now run all or specific integration tests.
You can’t perform that action at this time.
0 commit comments