Skip to content

Commit

Permalink
update Selenium version in examples, fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
dylans committed Mar 28, 2015
1 parent 5bbca21 commit 507c694
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion angularjs-example/tests/intern.js
Expand Up @@ -15,7 +15,7 @@ define({
// Note that the `build` capability will be filled in with the current commit ID from the Travis CI environment
// automatically
capabilities: {
'selenium-version': '2.39.0'
'selenium-version': '2.45.0'
},

// Browsers to run integration testing against. Note that version numbers must be strings if used with Sauce
Expand Down
2 changes: 1 addition & 1 deletion backbone-example/tests/intern.js
Expand Up @@ -15,7 +15,7 @@ define({
// Note that the `build` capability will be filled in with the current commit ID from the Travis CI environment
// automatically
capabilities: {
'selenium-version': '2.39.0'
'selenium-version': '2.45.0'
},

// Browsers to run integration testing against. Note that version numbers must be strings if used with Sauce
Expand Down
2 changes: 1 addition & 1 deletion dojo-example/tests/intern.js
Expand Up @@ -15,7 +15,7 @@ define({
// Note that the `build` capability will be filled in with the current commit ID from the Travis CI environment
// automatically
capabilities: {
'selenium-version': '2.39.0'
'selenium-version': '2.45.0'
},

// Browsers to run integration testing against. Note that version numbers must be strings if used with Sauce
Expand Down
4 changes: 2 additions & 2 deletions dojo-example/tests/model/SimpleTodoModel.js
Expand Up @@ -18,7 +18,7 @@ define([
var emptyModel = new SimpleTodoModel();
emptyModel.todos.push({});
emptyModel.todos.push({});
assert.strictEqual(emptyModel.get('incomplete'), 2, 'Prepopulated model todos should determine incomplete model propery.');
assert.strictEqual(emptyModel.get('incomplete'), 2, 'Prepopulated model todos should determine incomplete model property.');
emptyModel.set('complete', 2);
assert.strictEqual(emptyModel.get('incomplete'), 0, 'Incomplete count should change when complete count is manually updated.');
},
Expand All @@ -27,7 +27,7 @@ define([
var emptyModel = new SimpleTodoModel();
emptyModel.todos.push({});
emptyModel.todos.push({});
assert.strictEqual(emptyModel.get('complete'), 0, 'Prepopulated model todos should determine complete model propery.');
assert.strictEqual(emptyModel.get('complete'), 0, 'Prepopulated model todos should determine complete model property.');
emptyModel.set('incomplete', 0);
assert.strictEqual(emptyModel.get('complete'), 2, 'Complete count should change when incomplete count is manually updated.');
}
Expand Down
2 changes: 1 addition & 1 deletion grunt-example/tests/intern.js
Expand Up @@ -4,7 +4,7 @@ define({
proxyUrl: 'http://localhost:9057/',

capabilities: {
'selenium-version': '2.39.0'
'selenium-version': '2.45.0'
},

environments: [
Expand Down
2 changes: 1 addition & 1 deletion jquery-example/tests/intern.js
Expand Up @@ -15,7 +15,7 @@ define({
// Note that the `build` capability will be filled in with the current commit ID from the Travis CI environment
// automatically
capabilities: {
'selenium-version': '2.35.0'
'selenium-version': '2.45.0'
},

// Browsers to run integration testing against. Note that version numbers must be strings if used with Sauce
Expand Down

0 comments on commit 507c694

Please sign in to comment.