Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
update fabric-evm scenario test to use fabric-evm chain (scenarios/mi…
Browse files Browse the repository at this point in the history
…grations/fabric-evm)
  • Loading branch information
CruzMolina committed Aug 21, 2019
1 parent 6be7a80 commit ed04891
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/truffle/test/scenarios/migrations/fabric-evm.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,18 @@ const { promisify } = require("util");
const RunCommand = promisify(require("../commandrunner").run);
const path = require("path");
const assert = require("assert");
const Server = require("../server");
const Reporter = require("../reporter");
const sandbox = require("../sandbox");
const Web3 = require("web3");

describe("migrate with fabric-evm interface", function() {
describe("migrate with [ @fabric-evm ] interface", function() {
if (!process.env.FABRICEVM) return;
let config;
let web3;
let networkId;
const project = path.join(__dirname, "../../sources/migrations/fabric-evm");
const logger = new MemoryLogger();

before(done => Server.start(done));
after(done => Server.stop(done));

before(async function() {
config = await sandbox.create(project);
config.network = "development";
Expand Down

0 comments on commit ed04891

Please sign in to comment.