https://github.com/lockstep/4g_clinical_suite
https://github.com/lockstep/4g_clinical_suite
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/lockstep/4g_clinical_suite
- Owner: lockstep
- Created: 2017-10-03T13:09:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-09T03:39:08.000Z (over 8 years ago)
- Last Synced: 2025-06-09T15:06:33.082Z (9 months ago)
- Language: TypeScript
- Size: 45.9 KB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 4G Clinical Test Suite
NOTE: This code is based on the [Protractor Typescript Example](https://github.com/angular/protractor/tree/master/exampleTypescript).
## Getting started
This package.json references the local protractor directory with
`"protractor": "file: ../"`. For the type declarations to work, from
the protractor directory run an `npm install` to generate the declarations
file. If you do not have a `protractor` directory, clone one:
```
cd ..; git clone git@github.com:angular/protractor.git
```
Now install your dependencies:
```
npm install
```
Make sure you have an updated web driver:
```
../protractor/bin/webdriver-manager update
```
## Running Specs
First, start your web driver:
```
../protractor/bin/webdriver-manager start
```
Then you can run your test suite:
```
npm test
```
Specs/Scenarios and spec helpers are in the `specs/` directory.
## Helpful links
* [TypescriptLang.org tutorial](http://www.typescriptlang.org/docs/tutorial.html)
* [TypescriptLang.org tsconfig.json](http://www.typescriptlang.org/docs/handbook/tsconfig-json.html)
* [Typescript gitter](https://gitter.im/Microsoft/TypeScript)
* [Typescript stackoverflow](http://stackoverflow.com/questions/tagged/typescript)