Skip to content
This repository was archived by the owner on Mar 28, 2022. It is now read-only.

Commit 839b4dc

Browse files
committed
Enable skipped tests
1 parent a93b2ef commit 839b4dc

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

lib/core/Core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class Core {
8787
await this.init(); // in case it has not been initializated manually before
8888
await this._mocks.start();
8989
await this._server.start();
90-
return this._startPlugins(); // works only first time
90+
return this._startPlugins();
9191
}
9292

9393
stop() {

test/acceptance/main/programmatic-cli.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ describe("programmatic Cli", () => {
176176
});
177177
});
178178

179-
describe.only("when initializing server manually and start after", () => {
179+
describe("when initializing server manually and start after", () => {
180180
it("should start server without cli, then start", async () => {
181181
expect.assertions(3);
182182
cli = new CliRunner("init-server.js", {

test/unit/api/Settings.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const CoreMocks = require("../core/Core.mocks.js");
1616

1717
const Settings = require("../../../lib/api/Settings");
1818

19-
describe.only("Settings Api", () => {
19+
describe("Settings Api", () => {
2020
let sandbox;
2121
let routerStubs;
2222
let resMock;

0 commit comments

Comments
 (0)