Skip to content

Commit

Permalink
Fix relative path in test
Browse files Browse the repository at this point in the history
  • Loading branch information
Suven-p committed Oct 20, 2024
1 parent 444661e commit 6380df9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/backend-test/test-rabbitmq.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const { describe, test } = require("node:test");
const assert = require("node:assert");
const { RabbitMQContainer } = require("@testcontainers/rabbitmq");
const { RabbitMqMonitorType } = require("../../../server/monitor-types/rabbitmq");
const { UP, DOWN, PENDING } = require("../../../src/util");
const { RabbitMqMonitorType } = require("../../server/monitor-types/rabbitmq");
const { UP, DOWN, PENDING } = require("../../src/util");

describe("RabbitMQ Single Node", {
skip: !!process.env.CI && (process.platform !== "linux" || process.arch !== "x64"),
Expand Down

0 comments on commit 6380df9

Please sign in to comment.