Skip to content

Commit 08d6371

Browse files
committed
Test constant sizes for jquery plugin
1 parent 0dcb8e7 commit 08d6371

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

testing/test-cases/selenium-tests/jqueryPlugin/include.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ window.startTest = function (done) {
1212
features: [{
1313
type: 'point',
1414
data: [{x: 10, y: -10}],
15-
size: 50,
15+
radius: 50,
1616
fill: true,
1717
fillColor: 'brown',
1818
fillOpacity: 0.5,
@@ -42,6 +42,13 @@ window.startTest = function (done) {
4242
strokeColor: 'midnightblue',
4343
strokeWidth: 5,
4444
strokeOpacity: 0.5
45+
}, {
46+
type: 'point',
47+
data: [{x: 10, y: 15}],
48+
size: 10000,
49+
fillColor: 'black',
50+
strokeColor: 'lightgrey',
51+
strokeWidth: 2
4552
}]
4653
}]
4754
});

testing/test-cases/selenium-tests/jqueryPlugin/testJQueryPlugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
class base(object):
88
testCase = ('jqueryPlugin',)
9-
testRevision = 1
9+
testRevision = 2
1010

1111
def loadPage(self):
1212
self.resizeWindow(800, 600)

0 commit comments

Comments
 (0)