Skip to content

Commit 844a621

Browse files
author
Johan Brichau
committed
reduce delay in test
1 parent f3d68c0 commit 844a621

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

repository/Seaside-Tests-Parasol.package/WAWebDriverFunctionalTestCase.class/instance/testTableReportFunctionalTest.st

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@ testing
22
testTableReportFunctionalTest
33
| firstColumn classNames |
44
self selectTest: 'WATableReportFunctionalTest'.
5-
(Delay forSeconds: 1) wait.
5+
6+
(Delay forMilliseconds: 500) wait."Because it was failing on the CI for some older versions..."
67
firstColumn := driver findElementsByCSSSelector: 'table>tbody>tr>td:first-child'.
78
classNames := (firstColumn collect: [ :e | e getText ]).
8-
((WAComponent allSubclasses collect: [ :c | c name greaseString ])
9-
reject: [ :className | classNames includes: className ])
10-
do: [ :className | Transcript show: className ].
119
self assert: ((WAComponent allSubclasses collect: [ :c | c name greaseString ]) allSatisfy: [ :className | classNames includes: className ]).
1210

1311
((driver findElementByCSSSelector: 'table>thead') findElementByPartialLinkText: 'Name') click.

0 commit comments

Comments
 (0)