Skip to content

Commit

Permalink
fix (test framework): adapt assertions
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Schweizer committed Mar 25, 2020
1 parent 41456e1 commit fbbdc65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test-framework/e2e/src/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ describe('workspace-project App', () => {

const size = page.getEle('div section#search span.size');

expect(size.getText()).toEqual('21');
expect(size.getText()).toEqual('15');

});

Expand All @@ -157,7 +157,7 @@ describe('workspace-project App', () => {

const size = page.getEle('div section#search span.size');

expect(size.getText()).toEqual('21');
expect(size.getText()).toEqual('15');

});

Expand All @@ -171,7 +171,7 @@ describe('workspace-project App', () => {

const size = page.getEle('div section#search span.size');

expect(size.getText()).toEqual('21');
expect(size.getText()).toEqual('15');

});

Expand All @@ -185,7 +185,7 @@ describe('workspace-project App', () => {

const size = page.getEle('div section#search span.size');

expect(size.getText()).toEqual('25');
expect(size.getText()).toEqual('23');

});

Expand Down

0 comments on commit fbbdc65

Please sign in to comment.