Skip to content

Commit 4072fa0

Browse files
committed
Issues with spine-v1 browsers & changes
The external test spine-v1 had 2 issues: - Bad Jasmine output data with NULL suite description which was not hanlded by the changed code - Safari 5.1 is timing out. Changing to Safari 9.0 works.
1 parent 56dc01a commit 4072fa0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/server.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ exports.Server = function Server(bsClient, workers, config, callback) {
5656
runtime : results.runtime
5757
};
5858
function recurseThroughSuites(jasmineSuite, par) {
59+
if(!jasmineSuite) return
5960
var suite = {
6061
name : jasmineSuite.description,
6162
fullName: [ ],

tests/external-tests.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ var repositories = [
131131
browsers: [
132132
{
133133
'browser': 'safari',
134-
'browser_version': '5.1',
134+
'browser_version': '9.0',
135135
'os': 'OS X',
136-
'os_version': 'Snow Leopard'
136+
'os_version': 'El Capitan'
137137
}
138138
],
139139
test_path: [

0 commit comments

Comments
 (0)