Skip to content

Commit facc6b2

Browse files
committed
Test cases
1 parent 8d2c1dd commit facc6b2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/unit/specs/index.spec.js

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@ import { expect } from "chai";
22

33
import VueFormGenerator from "src/index";
44

5+
describe("module", () => {
56

7+
it("module properties", () => {
68

79
expect(true).to.be.true;
810

911
expect(VueFormGenerator).to.be.exist;
1012
expect(VueFormGenerator).to.have.property("component");
1113
expect(VueFormGenerator).to.have.property("schema");
1214
expect(VueFormGenerator).to.have.property("validators");
15+
expect(VueFormGenerator.install).to.be.a("function");
1316

1417
});
1518

16-
})
19+
})

0 commit comments

Comments
 (0)