https://github.com/eddyerburgh/vue-hackernews
A Vue hacker news application with tests
https://github.com/eddyerburgh/vue-hackernews
Last synced: about 1 year ago
JSON representation
A Vue hacker news application with tests
- Host: GitHub
- URL: https://github.com/eddyerburgh/vue-hackernews
- Owner: eddyerburgh
- Created: 2017-12-20T12:13:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-02-27T18:29:03.000Z (over 3 years ago)
- Last Synced: 2025-05-08T21:29:48.622Z (about 1 year ago)
- Language: JavaScript
- Size: 819 KB
- Stars: 157
- Watchers: 4
- Forks: 93
- Open Issues: 30
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Vue HackerNews
A Hacker News clone with tests, written for the book [Testing Vue.js Applications](https://www.manning.com/books/testing-vuejs-applications)
## Test
Run full suite:
```
npm run test
```
Unit tests:
```
npm run test:unit
```
Integration tests:
```
npm run test:integration
```
E2E tests:
```
npm run test:e2e
```
## Development
Run the development server:
```
npm run serve
```