Skip to content

Commit 80e800a

Browse files
committed
test passed perfectly
1 parent 2e67aab commit 80e800a

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

exercises/08-Bootstrap-Forms/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<body>
1515
<div class="col-3 mx-auto my-5">
1616
<!-- Add your code below this line -->
17-
1817
</div>
1918
</body>
2019
</html>
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<form action="#" class="bg-secondary rounded p-5">
2+
<h2>Please login</h2>
3+
<div class="form-group m-2">
4+
<input type="email" class="form-control" placeholder="Email Address" />
5+
</div>
6+
<div class="form-group m-2">
7+
<input type="password" class="form-control" placeholder="Password" />
8+
</div>
9+
10+
<input type="checkbox" class="mx-2" /> <label>Remember me</label>
11+
<button type="button" class="m-2 bg-primary w-100 rounded border-0 text-white">Login</button>
12+
</form>

exercises/08-Bootstrap-Forms/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ describe("All the tests should pass", function () {
9090
expect(inputs[2].type.trim()).toBe("checkbox")
9191
})
9292

93-
it('The checkbox should have aside the text "Remember me"', () => {
93+
it('The checkbox should have a side text "Remember me"', () => {
9494
let rememberMe = html.toString().indexOf("Remember me")
9595
let checkbox = html.toString().indexOf("checkbox")
9696
expect(rememberMe).toBeTruthy()

0 commit comments

Comments
 (0)