mirror of https://github.com/hashicorp/consul
Browse Source
`Copied IP Address!` > `Copied output!` Adds feature test for copy buttonpull/5940/head^2
Joel Kuzmarski
5 years ago
committed by
John Cowen
3 changed files with 24 additions and 1 deletions
@ -0,0 +1,13 @@
|
||||
@setupApplicationTest |
||||
Feature: components / copy-button |
||||
Background: |
||||
Given 1 datacenter model with the value "dc-1" |
||||
Scenario: Clicking the copy button |
||||
When I visit the node page for yaml |
||||
--- |
||||
dc: dc-1 |
||||
node: node-0 |
||||
--- |
||||
Then the url should be /dc-1/nodes/node-0 |
||||
When I click ".healthcheck-output:nth-child(1) button.copy-btn" |
||||
Then I see the text "Copied output!" in ".healthcheck-output:nth-child(1) p.feedback-dialog-out" |
@ -0,0 +1,10 @@
|
||||
import steps from '../steps'; |
||||
|
||||
// step definitions that are shared between features should be moved to the
|
||||
// tests/acceptance/steps/steps.js file
|
||||
|
||||
export default function(assert) { |
||||
return steps(assert).then('I should find a file', function() { |
||||
assert.ok(true, this.step); |
||||
}); |
||||
} |
Loading…
Reference in new issue