Skip to content

Commit

Permalink
Test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
icebob committed May 6, 2016
1 parent 8d2c1dd commit facc6b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/unit/specs/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,18 @@ import { expect } from "chai";

import VueFormGenerator from "src/index";

describe("module", () => {

it("module properties", () => {

expect(true).to.be.true;

expect(VueFormGenerator).to.be.exist;
expect(VueFormGenerator).to.have.property("component");
expect(VueFormGenerator).to.have.property("schema");
expect(VueFormGenerator).to.have.property("validators");
expect(VueFormGenerator.install).to.be.a("function");

});

})
})

0 comments on commit facc6b2

Please sign in to comment.