Skip to content
This repository has been archived by the owner on Mar 26, 2022. It is now read-only.

Commit

Permalink
Fixing e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
Migarve55 committed Feb 27, 2019
1 parent 04392f3 commit f25eba6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
chrome-profiler-events.json
speed-measure-plugin.json

#Tests
/.nyc_output

# IDEs and editors
/.idea
.project
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ install:
script:
- npm run setup:install
- npm run test -- --watch=false --no-progress --browsers=ChromeHeadlessNoSandbox
- npm run e2e
- npm run docs:build

after_success:
Expand Down
2 changes: 1 addition & 1 deletion e2e/src/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ describe('workspace-project App', () => {

it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to solid-app!');
expect(page.getParagraphText()).toEqual('PROFILE DEMO APP');
});
});
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"build": "ng build",
"test": "nyc ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"e2e": "nyc ng e2e",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"docs:prepare": "npm install gitbook-cli -g && gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve ./_docs ./docs --open",
Expand Down

0 comments on commit f25eba6

Please sign in to comment.