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 3125018 commit eb32d51Copy full SHA for eb32d51
features/read-home-page.feature
@@ -3,6 +3,5 @@ Feature: Read the homepage
3
As someone interested in understand Big Give, I should be able to read the homepage.
4
5
Scenario: Reading the homepage
6
- Given that I am on my chosen charity's Donate page
+ Given I am on the home page
7
Then there should be no accessibility violations detected
8
-
steps/HomePage.ts
@@ -3,7 +3,7 @@ import {goToUrl} from "../support/util";
import checkNoAccessibilityViolations from "../support/a11y";
Given(
- /^that I am on my the home page page$/,
+ 'I am on the home page',
async () => {
const baseurl = process.env.BASE_URL;
9
if (!baseurl) throw new Error('BASE_URL not defined in enviornment');
0 commit comments