We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d2c1dd commit facc6b2Copy full SHA for facc6b2
test/unit/specs/index.spec.js
@@ -2,15 +2,18 @@ import { expect } from "chai";
2
3
import VueFormGenerator from "src/index";
4
5
+describe("module", () => {
6
7
+ it("module properties", () => {
8
9
expect(true).to.be.true;
10
11
expect(VueFormGenerator).to.be.exist;
12
expect(VueFormGenerator).to.have.property("component");
13
expect(VueFormGenerator).to.have.property("schema");
14
expect(VueFormGenerator).to.have.property("validators");
15
+ expect(VueFormGenerator.install).to.be.a("function");
16
17
});
18
-})
19
+})
0 commit comments