We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee6abf1 commit cc4af0eCopy full SHA for cc4af0e
lib/xrp/test/single-node-stack.test.ts
@@ -1,14 +1,14 @@
1
import { Match, Template } from "aws-cdk-lib/assertions";
2
import * as cdk from "aws-cdk-lib";
3
import * as dotenv from "dotenv";
4
+dotenv.config({ path: './test/.env-test' });
5
import * as config from "../lib/config/XRPConfig";
6
import { XRPCommonStack } from "../lib/common-stack";
7
import { XRPSingleNodeStack } from "../lib/single-node-stack";
8
9
10
describe("XRPSingleNodeStack", () => {
11
test("synthesizes the way we expect", () => {
- dotenv.config({ path: './test/.env-test' });
12
const app = new cdk.App();
13
const xrpCommonStack = new XRPCommonStack(app, "xrp-common", {
14
env: { account: config.baseConfig.accountId, region: config.baseConfig.region },
0 commit comments