-
-
Notifications
You must be signed in to change notification settings - Fork 650
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Constrain input for
Step.options.buttons
to an array of buttons. (#271
) * Remove flakiness from buttons acceptance test * add script for viewing test coverage * Constrain input for `Step.options.buttons` to an array of buttons. Closes [#243](#243).
- Loading branch information
1 parent
d7395af
commit aa1a8bc
Showing
7 changed files
with
71 additions
and
70 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export default { | ||
cancel: { | ||
classes: 'shepherd-button-secondary cancel-button', | ||
text: 'Exit', | ||
type: 'cancel' | ||
}, | ||
next: { | ||
classes: 'shepherd-button-primary next-button', | ||
text: 'Next', | ||
type: 'next' | ||
}, | ||
back: { | ||
classes: 'shepherd-button-primary back-button', | ||
text: 'Back', | ||
type: 'back' | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters