github.com/rposudnevskiy/consul@v1.4.5/ui-v2/tests/acceptance/components/kv-filter.feature (about)

     1  @setupApplicationTest
     2  Feature: components / kv-filter
     3    Scenario: Filtering using the freetext filter
     4      Given 1 datacenter model with the value "dc-1"
     5      And 2 [Model] models from yaml
     6      ---
     7        - hi
     8        - there
     9      ---
    10      When I visit the [Page] page for yaml
    11      ---
    12        dc: dc-1
    13      ---
    14      Then the url should be [Url]
    15      Then I fill in with yaml
    16      ---
    17      s: [Text]
    18      ---
    19      And I see 1 [Model] model with the name "[Text]"
    20  
    21    Where:
    22      ----------------------------------------------------------------
    23      | Model   | Page     | Url        | Text            | Property |
    24      | kv      | kvs      | /dc-1/kv   | hi              | name     |
    25      | kv      | kvs      | /dc-1/kv   | there           | name     |
    26      ----------------------------------------------------------------