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

Commit

Permalink
Change server start call in console test
Browse files Browse the repository at this point in the history
  • Loading branch information
sukanyaparashar committed Jun 30, 2022
1 parent dc13650 commit d4eef2f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/truffle/test/scenarios/commands/console.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ describe("truffle console", () => {
let config, project;
const logger = new MemoryLogger();

before(async () => await Server.start());
after(async () => await Server.stop());
//before(async () => await Server.start());

project = path.join(__dirname, "../../sources/console");

Expand All @@ -24,8 +23,11 @@ describe("truffle console", () => {
config.mocha = {
reporter: new Reporter(logger)
};
await Server.start();
});

after(async () => await Server.stop());

describe("when runs with network option with a config", () => {
it("displays the network name in the prompt", async () => {
const networkName = config.network;
Expand Down

0 comments on commit d4eef2f

Please sign in to comment.