Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
vidjil
vidjil
Commits
20176117
Commit
20176117
authored
May 31, 2017
by
Téo Vasseur
Committed by
Mathieu Giraud
Oct 10, 2017
Browse files
test_analysis-example1.rb : change .exists? to .visible ? in test_00_double_scatterplot
parent
ddf8020b
Changes
1
Hide whitespace changes
Inline
Side-by-side
browser/test/functional/test_analysis-example1.rb
View file @
20176117
...
...
@@ -17,8 +17,8 @@ class TestSimple < BrowserTest
def
test_00_double_scatterplot
# analysis-example has only one sample, second scatterplot expected
assert
(
$b
.
div
(
:id
=>
'visu'
,
:class
=>
'scatterplot'
).
exists
?
),
"First scatterplot should be found"
assert
(
$b
.
div
(
:id
=>
'visu2'
,
:class
=>
'scatterplot'
).
exists
?
),
"Second scatterplot should be found"
assert
(
$b
.
div
(
:id
=>
'visu'
,
:class
=>
'scatterplot'
).
visible
?
),
"First scatterplot should be found"
assert
(
$b
.
div
(
:id
=>
'visu2'
,
:class
=>
'scatterplot'
).
visible
?
),
"Second scatterplot should be found"
end
def
test_01_legend_scatterplot
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment