mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-26 15:21:51 +00:00
966f2f7bbb
To get at least some Cucumber scenarios running in Jenkins, disable all of them that are failing and run only ones that are passing. The next step will be to fix failing scenarios. Bug: T94162 Change-Id: Id0338c1d6b86d6b45220c5c0802074be397fb607
22 lines
875 B
Gherkin
22 lines
875 B
Gherkin
Feature: VisualEditor Indent, Outdent
|
|
|
|
Background:
|
|
Given I go to the "Indent Outdent VisualEditor Test" page with content "Indent Outdent VisualEditor Test"
|
|
And I make the text "Indent Outdent" be selected
|
|
|
|
Scenario: Check indentation controls disabled by default
|
|
Then Decrease indentation should be disabled
|
|
And Increase indentation should be disabled
|
|
|
|
Scenario Outline: check indent and outdent enable and disable
|
|
When I click <control>
|
|
Then Decrease indentation should be <initial_state>
|
|
And Increase indentation should be <initial_state>
|
|
And I undo <control>
|
|
And Decrease indentation should be <final_state>
|
|
And Increase indentation should be <final_state>
|
|
Examples:
|
|
| control | initial_state | final_state |
|
|
| Bullets | enabled | disabled |
|
|
| Numbering | enabled | disabled |
|