Skip to content

Commit a1a3f48

Browse files
committed
clean up
1 parent 4940106 commit a1a3f48

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

lib/xrp/jest.config.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module.exports = {
2-
testEnvironment: 'node',
3-
roots: ['<rootDir>/test'],
4-
testMatch: ['**/*.test.ts'],
2+
testEnvironment: "node",
3+
roots: ["<rootDir>/test"],
4+
testMatch: ["**/*.test.ts"],
55
transform: {
6-
'^.+\\.tsx?$': 'ts-jest'
6+
"^.+\\.tsx?$": "ts-jest"
77
},
88
setupFiles: [
9-
'dotenv/config'
9+
"dotenv/config"
1010
]
11-
};
11+
};

lib/xrp/lib/ha-nodes-stack.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class XRPHANodesStack extends cdk.Stack {
4242
// Using default VPC
4343
const vpc = ec2.Vpc.fromLookup(this, "vpc", { isDefault: true });
4444

45-
// Setting up the security group for the node from Solana-specific construct
45+
// Setting up the security group for the node from xrp-specific construct
4646
const instanceSG = new XRPNodeSecurityGroupConstruct(this, "security-group", {
4747
vpc: vpc
4848
});

lib/xrp/test/common-stack.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ import * as dotenv from "dotenv";
44
import * as config from "../lib/config/XRPConfig";
55
import { XRPCommonStack } from "../lib/common-stack";
66

7-
dotenv.config({ path: './test/.env-test' });
7+
dotenv.config({ path: "./test/.env-test" });
88

9-
describe("SolanaCommonStack", () => {
9+
describe("XRPCommonStack", () => {
1010
test("synthesizes the way we expect", () => {
1111
const app = new cdk.App();
1212

13-
// Create the SolanaCommonStack.
13+
// Create the XRPCommonStack.
1414
const xrpCommonStack = new XRPCommonStack(app, "xrp-common", {
1515
env: { account: config.baseConfig.accountId, region: config.baseConfig.region },
16-
stackName: `xrp-nodes-common`,
16+
stackName: `xrp-nodes-common`
1717
});
1818

1919
// Prepare the stack for assertions.
@@ -70,7 +70,7 @@ describe("SolanaCommonStack", () => {
7070
]
7171
}
7272
]
73-
})
73+
});
7474

7575
});
7676
});

lib/xrp/test/single-node-stack.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { XRPSingleNodeStack } from "../lib/single-node-stack";
77

88
dotenv.config({ path: './test/.env-test' });
99

10-
describe("SolanaSingleNodeStack", () => {
10+
describe("XRPSingleNodeStack", () => {
1111
test("synthesizes the way we expect", () => {
1212
const app = new cdk.App();
1313
const xrpCommonStack = new XRPCommonStack(app, "xrp-common", {

0 commit comments

Comments
 (0)