UNPKG

446 BPlain TextView Raw
1// Because this file imports from protractor, you'll need to have it as a
2// project dependency.
3//
4// To run this example, run 'npm run tsc -t ES2015' to transpile the typescript
5// to javascript. run with 'protractor conf.js'
6import {Config} from 'protractor';
7
8export let config: Config = {
9 framework: 'jasmine',
10 capabilities: {
11 browserName: 'chrome'
12 },
13 specs: [ 'spec.js' ],
14 seleniumAddress: 'http://localhost:4444/wd/hub'
15};