Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
fix(index): update id and tests for new testability content
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Jun 29, 2015
1 parent 08668af commit 785566f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ <h4>Locale: SK</h4>
</div>
</div>

<h1 id="embed-and-inject">Testability Built-in</h1>
<h1 id="testability">Testability Built-in</h1>
<div class="row">
<div class="span6">
<h3>Injectable</h3>
Expand Down
8 changes: 4 additions & 4 deletions test/angularjs.org.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,10 @@ describe('Angularjs.org', function () {
});


describe('Embed and Inject', function () {
it('should have some content under and "Embeddable" heading', function () {
var embedAndInject = browser.findElement(protractor.By.css('#embed-and-inject'))
expect(embedAndInject.getText()).toEqual('Embed and Inject');
describe('Testability Built-in', function () {
it('should have some content under and "Testability Built-in" heading', function () {
var testability = browser.findElement(protractor.By.css('#testability'))
expect(testability.getText()).toEqual('Testability Built-in');
});
});
});
Expand Down

0 comments on commit 785566f

Please sign in to comment.