Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yisus82/codelytv-vuejs-tdd
Crea una app con VueJS y Jest aplicando TDD - Codely.tv
https://github.com/yisus82/codelytv-vuejs-tdd
jest tdd vue vuejs
Last synced: 12 days ago
JSON representation
Crea una app con VueJS y Jest aplicando TDD - Codely.tv
- Host: GitHub
- URL: https://github.com/yisus82/codelytv-vuejs-tdd
- Owner: yisus82
- Created: 2020-06-30T21:29:14.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-11T12:05:09.000Z (about 2 years ago)
- Last Synced: 2024-12-01T13:35:20.248Z (2 months ago)
- Topics: jest, tdd, vue, vuejs
- Language: JavaScript
- Homepage:
- Size: 1.25 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JotasJS Basic
> Demo project for the CodelyTV Pro video course `Building an app with VueJS and Jest using TDD` you may find in: [Crea una app con VueJS y Jest aplicando TDD](https://pro.codely.tv/library/crea-una-app-con-vuejs-y-jest-aplicando-tdd/65211/path/)
## Getting Started!
```bash
# install dependencies
$ yarn install
or
$ npm install# run tests
$ jest --watch# serve with hot reload at localhost:8080
$ yarn dev mat
or
$ npm run dev mat# 'mat' was the material theme, try iOS with
$ yarn dev ios
or
$ npm run dev ios# build for production with minification
$ quasar build
```## Going Mobile!
You may want to wrap the App into a native mobile App. Given you already have Cordova and an Android or iOS SDK installed in your system, run:
```
quasar wrap cordova
cordova platform add android
cordova run android
```For full details, take a look to the Quasar [guide](http://quasar-framework.org/guide/cordova-wrapper.html).