From 3a79af82383cdc688f4431d15ad18cb122be68b0 Mon Sep 17 00:00:00 2001 From: Richard Ramos Date: Wed, 28 Feb 2018 10:18:00 -0400 Subject: [PATCH] Placeholder for IdentityFactory test --- test/factory.js | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 test/factory.js diff --git a/test/factory.js b/test/factory.js new file mode 100644 index 0000000..2072256 --- /dev/null +++ b/test/factory.js @@ -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 () => { + + }); + + }); + +}); \ No newline at end of file