https://github.com/jomendez/adp-angularjs-exercise
https://github.com/jomendez/adp-angularjs-exercise
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jomendez/adp-angularjs-exercise
- Owner: jomendez
- License: mit
- Created: 2019-01-25T00:44:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-25T06:25:13.000Z (over 6 years ago)
- Last Synced: 2025-01-02T05:17:54.172Z (9 months ago)
- Language: JavaScript
- Size: 1.44 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# adp-angularjs-exercise
## Instructions to run the project
### Installation
You can clone or download the project from this repository, then open a cmd console and navigate to the project folder and run the following command.```
npm install
```### Run the app
To run the app on your local, in the console run:
```
npm start
```### Run the unit test (karma jasmine)
```
npm run test-single-run
```### To run protractor e2e test
Before starting Protractor, open a separate terminal window and run:
```
npm start
```Since Protractor is built upon WebDriver, we need to ensure that it is installed and up-to-date
```
npm run update-webdriver
```Once you have ensured that the development web server hosting our application is up and running, you can run the end-to-end tests using the supplied npm script:
```
npm run protractor
```