mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-02-05 19:13:39 +00:00
Placeholder for IdentityFactory test
This commit is contained in:
parent
5c9070f7dc
commit
3a79af8238
21
test/factory.js
Normal file
21
test/factory.js
Normal 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 () => {
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user