Skip to content
This repository has been archived by the owner on Feb 5, 2021. It is now read-only.

Commit

Permalink
HID-1831: tabs->spaces + minor docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rupl committed Aug 16, 2019
1 parent 3cd6738 commit 86afc23
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Now you can run the E2E tests:
# Run all E2E tests in series
yarn run protractor

# Run a single E2E test suite
# Run a single E2E test suite. Look in conf.js for suite names.
protractor --suite="my-suite-name" src/e2e-tests/conf.js
```

Expand Down
22 changes: 11 additions & 11 deletions src/e2e-tests/conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ if (!process.env.TRAVIS) {
}

exports.config = {
baseUrl: process.env.TRAVIS ? process.env.baseUrl : env.baseUrl,
directConnect: true,
jasmineNodeOpts: {
print: function() {},
baseUrl: process.env.TRAVIS ? process.env.baseUrl : env.baseUrl,
directConnect: true,
jasmineNodeOpts: {
print: function() {},
defaultTimeoutInterval: 150000
},
onPrepare: function () {
},
onPrepare: function () {
jasmine.getEnv().addReporter(new SpecReporter({
spec: {
displayStacktrace: false
Expand All @@ -34,13 +34,13 @@ exports.config = {
]
},
},
specs: ['specs/**/*-spec.js'],
specs: ['specs/**/*-spec.js'],
suites: {
login: 'specs/login-spec.js',
nav: 'specs/navigation-spec.js',
profile: 'specs/profile/*-spec.js',
login: 'specs/login-spec.js',
nav: 'specs/navigation-spec.js',
profile: 'specs/profile/*-spec.js',
list: 'specs/lists/*-spec.js',
search: 'specs/search-spec.js',
search: 'specs/search-spec.js',
checkin: 'specs/checkin-spec.js',
services: 'specs/service-spec.js',
dashboard: 'specs/dashboard-spec.js',
Expand Down

0 comments on commit 86afc23

Please sign in to comment.