Skip to content
This repository was archived by the owner on Jul 29, 2024. It is now read-only.

Commit f3b44b3

Browse files
committed
chore(website): adding missing partial
1 parent 75e90d9 commit f3b44b3

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<div class="table-responsive" ng-if="list">
2+
<table class="table">
3+
<thead>
4+
<tr>
5+
<th>Function</th>
6+
<th>Description</th>
7+
</tr>
8+
</thead>
9+
<tbody>
10+
<tr ng-repeat="item in list">
11+
<td>
12+
<a href="#/api?view={{item.name}}"
13+
class="child"
14+
ng-bind="item.displayName">
15+
</a>
16+
</td>
17+
<td ng-bind="item.shortDescription"></td>
18+
</tr>
19+
</tbody>
20+
</table>
21+
</div>

website/test/e2e/navigation_spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ describe('Navigation', function() {
141141
it('should go to Protractor API', function() {
142142
menu.dropdown('Reference').item('Protractor API');
143143

144-
expect($('#title').getText()).toBe('Protractor API 1.0.0');
144+
expect($('#title').getText()).toMatch('Protractor API');
145145
});
146146

147147
it('should go to Timeouts', function() {

0 commit comments

Comments
 (0)