-
-
Notifications
You must be signed in to change notification settings - Fork 648
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Instead of using examples, just feed it the table because examples will rerun the whole scenario from scratch, which isn't what we are trying to test here. - Provide a basic example with item listing to show how this will work.
- Loading branch information
1 parent
bc73aa0
commit 87c8b65
Showing
3 changed files
with
36 additions
and
9 deletions.
There are no files selected for viewing
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
23 changes: 23 additions & 0 deletions
23
examples/suspense_tests/e2e/features/check_instrumented_item_listing.feature
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,23 @@ | ||
@check_instrument_item_listing | ||
Feature: Check Instrumented Item Listing | ||
|
||
Background: | ||
|
||
Given I see the app | ||
|
||
@check_instrumented-initial | ||
Scenario Outline: Should see counters updated | ||
Given I select the mode Instrumented | ||
When I select the component Counters | ||
When I click on Reset Counters | ||
When I select the component Item Listing | ||
When I select the component Counters | ||
Then I see the Counters under the Suspend Calls | ||
| item_listing | 1 | | ||
| item_overview | 0 | | ||
| item_inspect | 0 | | ||
Then I see the Counters under the Server Calls | ||
| list_items | 1 | | ||
| get_item | 0 | | ||
| inspect_item_root | 0 | | ||
| inspect_item_field | 0 | |
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