Misc. changes to improve test automation.

This commit is contained in:
Nick Gerakines 2020-04-09 20:14:03 -04:00
parent 8b54f5c78d
commit 0535b947ce
No known key found for this signature in database
GPG Key ID: 33D43D854F96B2E4
3 changed files with 8 additions and 7 deletions

View File

@ -96,6 +96,7 @@ func publisherCommandAction(cliCtx *cli.Context) error {
p := &publisher{
q: q,
httpClient: httpClient,
logger: logger,
}
houndCB := tavernCallback{
location: cliCtx.String("publisher-callback"),

View File

@ -13,15 +13,15 @@
<form method="POST" action="{{ url "signin" }}" id="login">
<div class="form-group">
<label for="loginEmail">Email</label>
<input type="email" class="form-control" id="loginEmail" name="email" required>
<input type="email" class="form-control" id="loginEmail" name="email" required>
</div>
<div class="form-group">
<label for="loginPassword">Password</label>
<input type="password" class="form-control" id="loginPassword" name="password" required>
<input type="password" class="form-control" id="loginPassword" name="password" required>
</div>
<input type="submit" class="btn btn-dark" name="submit" value="Submit"/>
</form>
</div>
</div>
{{end}}
{{end}}

View File

@ -31,7 +31,7 @@
</thead>
<tbody>
{{ range .following }}
<tr>
<tr class="follower">
<td>
<a href="{{ . }}">{{ . }}</a>
</td>
@ -44,7 +44,7 @@
</tr>
{{ end }}
{{ range .pending_following }}
<tr>
<tr class="pending-follower">
<td>
<span class="badge badge-danger">Pending</span>
<a href="{{ . }}">{{ . }}</a>
@ -54,7 +54,7 @@
</tr>
{{ end }}
{{ range .groups }}
<tr>
<tr class="group">
<td>
<span class="badge badge-success">Group</span>
<a href="{{ . }}">{{ . }}</a>
@ -68,7 +68,7 @@
</tr>
{{ end }}
{{ range .pending_groups }}
<tr>
<tr class="pending-group">
<td>
<span class="badge badge-success">Group</span>
<span class="badge badge-danger">Pending</span>