Skip to content

Commit 0879916

Browse files
committed
Fix tests
1 parent 832cf2f commit 0879916

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/components/bs-form-element-test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module('Integration | Component | bs form element', function (hooks) {
2828
};
2929

3030
test('form is submitted if valid and validation success shown', async function (assert) {
31-
assert.expect(1);
31+
assert.expect(2);
3232

3333
let model = {
3434
name: '1234',
@@ -54,7 +54,7 @@ module('Integration | Component | bs form element', function (hooks) {
5454
});
5555

5656
test('validation errors are shown on submit', async function (assert) {
57-
assert.expect(1);
57+
assert.expect(3);
5858

5959
let model = {
6060
name: '',
@@ -81,7 +81,7 @@ module('Integration | Component | bs form element', function (hooks) {
8181
});
8282

8383
test('validation nested errors are shown on submit', async function (assert) {
84-
assert.expect(1);
84+
assert.expect(3);
8585

8686
let model = {
8787
nested: { name: '' },

0 commit comments

Comments
 (0)