Added .embark to .gitignore file and updated identity.js test unit.

This commit is contained in:
Richard Ramos 2018-03-13 19:35:30 -04:00
parent 3a0889237c
commit 6f83c96ab7
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
const assert = require('assert');
const Embark = require('embark');
const EmbarkSpec = Embark.initTests();
let EmbarkSpec = Embark.initTests();
const web3 = EmbarkSpec.web3;
const TestUtils = require("../utils/testUtils.js");
const web3EthAbi = require("web3-eth-abi");
@ -15,6 +15,8 @@ describe("Identity", function() {
beforeEach( function(done) {
this.timeout(0);
EmbarkSpec = Embark.initTests();
EmbarkSpec.deployAll({ "Identity": {}}, (_accounts) => {
accounts = _accounts;
done();