Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/d-koppenhagen/vue-test-demo
Demo App for Vue.js tests
https://github.com/d-koppenhagen/vue-test-demo
Last synced: 3 days ago
JSON representation
Demo App for Vue.js tests
- Host: GitHub
- URL: https://github.com/d-koppenhagen/vue-test-demo
- Owner: d-koppenhagen
- Created: 2021-03-02T19:35:31.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-03-10T19:49:42.000Z (over 3 years ago)
- Last Synced: 2024-10-11T06:11:48.883Z (about 1 month ago)
- Language: JavaScript
- Size: 536 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# vue-test-demo
## Project start
Start the app and Storybook via Docker:
```bash
./build.sh
```## Development
### Project setup
```
npm install
```### Compiles and hot-reloads for development
```
npm run serve
```### Compiles and minifies for production
```
npm run build
```### Lints and fixes files
```
npm run lint
```### Execute tests
```
npm run test:unit # run the unit tests
npm run test:snapshot # run the snapshot tests
npm run test:storybook # run the storybook snapshot and visual tests (be sure storybook runs)
npm run test:visual # run the visual regression tests (be sure the app runs)
npm run test:e2e # run the end-to-end-tests (be sure the app runs)
```### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).