Skip to content

Commit

Permalink
chore: run integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
karenc-bq committed Oct 8, 2024
1 parent 1f23d24 commit 4d1c4ac
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/integration/container/tests/basic_connectivity.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import { TestEnvironmentFeatures } from "./utils/test_environment_features";
import { features } from "./config";
import { DatabaseEngineDeployment } from "./utils/database_engine_deployment";

const itIf = !features.includes(TestEnvironmentFeatures.PERFORMANCE) ? it : it.skip;
const itIf = !features.includes(TestEnvironmentFeatures.PERFORMANCE) ? it : it;

let client: any;
let auroraTestUtility: AuroraTestUtility;
Expand All @@ -44,6 +44,7 @@ beforeEach(async () => {
logger.info(`Test started: ${expect.getState().currentTestName}`);
auroraTestUtility = new AuroraTestUtility((await TestEnvironment.getCurrent()).region);
await ProxyHelper.enableAllConnectivity();
await TestEnvironment.updateWriter();
client = null;
});

Expand Down Expand Up @@ -105,7 +106,7 @@ describe("basic_connectivity", () => {
1000000
);

itIf.skip(
itIf(
"wrapper with failover plugins instance endpoint",
async () => {
const env = await TestEnvironment.getCurrent();
Expand All @@ -128,7 +129,7 @@ describe("basic_connectivity", () => {
1000000
);

itIf.skip(
itIf(
"wrapper",
async () => {
const env = await TestEnvironment.getCurrent();
Expand Down Expand Up @@ -158,7 +159,7 @@ describe("basic_connectivity", () => {
1000000
);

itIf.skip(
itIf(
"wrapper_proxy",
async () => {
const env = await TestEnvironment.getCurrent();
Expand Down

0 comments on commit 4d1c4ac

Please sign in to comment.