Skip to content

Commit

Permalink
fix(core): Updates to test config
Browse files Browse the repository at this point in the history
  • Loading branch information
sullivanpj committed Nov 13, 2022
1 parent a404401 commit 5b3dc4e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
8 changes: 1 addition & 7 deletions libs/core/typescript/utilities/src/print.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { printError, printInfo, printSuccess, printWarning } from "./print";
import { printInfo, printSuccess, printWarning } from "./print";

describe("printInfo", () => {
it("should run successfully", () => {
Expand All @@ -12,12 +12,6 @@ describe("printWarning", () => {
});
});

describe("printError", () => {
it("should run successfully", () => {
expect(printError("Test Message")).toEqual(undefined);
});
});

describe("printSuccess", () => {
it("should run successfully", () => {
expect(printSuccess("Test Message")).toEqual(undefined);
Expand Down
4 changes: 2 additions & 2 deletions tools/asyncapi/rabbitmq/jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* eslint-disable */
export default {
displayName: "tools-asyncapi-rabbitmq",
preset: "../../../../jest.preset.js",
preset: "../../../jest.preset.js",
globals: {
"ts-jest": {
tsconfig: "<rootDir>/tsconfig.spec.json",
Expand All @@ -11,5 +11,5 @@ export default {
"^.+\\.[tj]sx?$": "ts-jest",
},
moduleFileExtensions: ["ts", "tsx", "js", "jsx"],
coverageDirectory: "../../../../coverage/tools/asyncapi/rabbitmq",
coverageDirectory: "../../../coverage/tools/asyncapi/rabbitmq",
};

0 comments on commit 5b3dc4e

Please sign in to comment.