Placeholder for IdentityFactory test

This commit is contained in:
Richard Ramos 2018-02-28 10:18:00 -04:00
parent 5c9070f7dc
commit 3a79af8238

21
test/factory.js Normal file
View File

@ -0,0 +1,21 @@
const TestUtils = require("./TestUtils.js")
const Identity = artifacts.require("./identity/Identity.sol");
const IdentityFactory = artifacts.require("./identity/IdentityFactory.sol");
contract('IdentityFactory', function(accounts) {
let identityFactory;
beforeEach(async () => {
identityFactory = await IdentityFactory.new("0x0", {from: accounts[0]});
})
describe("IdentityFactory()", () => {
it("test1", async () => {
});
});
});