We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab8cf9 commit cd0b1d4Copy full SHA for cd0b1d4
e2e/pages/heroes-list/heroes-list-page.e2e-spec.ts
@@ -2,14 +2,13 @@ import {HeroesListPage} from './heroes-list-page';
2
3
describe('Home page', function () {
4
let page;
5
- const defaultHeroes = 9;
6
7
beforeEach(() => {
8
page = new HeroesListPage();
9
});
10
11
it('should contains equal or more heroes than default ones', () => {
12
HeroesListPage.navigateTo();
13
- expect<any>(HeroesListPage.getNumberHeroes()).toBeGreaterThanOrEqual(defaultHeroes);
+ expect<any>(HeroesListPage.getNumberHeroes()).toBeGreaterThanOrEqual(8);
14
15
0 commit comments