Skip to content
This repository was archived by the owner on Apr 30, 2018. It is now read-only.

Commit fdf5cae

Browse files
committed
fix(formly-form test): Rectify mis-matched HTML tags in test
A test for the attribute usage of formly-form directive corrected to have matching HTML tags
1 parent 4fc7af3 commit fdf5cae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/directives/formly-form.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ describe('formly-form', () => {
2323

2424
it(`should be possible to use it as an attribute directive`, () => {
2525
const el = compileAndDigest(`
26-
<div formly-form model="model" fields="fields" form="theForm"></formly-form>
26+
<div formly-form model="model" fields="fields" form="theForm"></div>
2727
`);
2828
expect(el.length).to.equal(1);
2929
expect(el.prop('nodeName').toLowerCase()).to.equal('ng-form');

0 commit comments

Comments
 (0)