We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 234e1d0 commit 6e2f493Copy full SHA for 6e2f493
src/test/java/org/sopt/makers/global/util/EnvUtilTest.java
@@ -22,15 +22,15 @@
22
@DisplayName("EnvUtil 테스트")
23
class EnvUtilTest {
24
25
- private static final String ENV_FILE_PATH = "src/main/resources/.env";
+ private static final String ENV_FILE_PATH = "src/test/resources/.env";
26
27
@BeforeAll
28
static void setUp() throws IOException {
29
String content = """
30
SLACK_WEBHOOK_CREW_DEV_BE=https://hooks.slack.com/services/crew/dev/be
31
SLACK_WEBHOOK_APP_PROD_FE=https://hooks.slack.com/services/app/prod/fe
32
""";
33
- Files.createDirectories(Paths.get("src/main/resources"));
+ Files.createDirectories(Paths.get("src/test/resources"));
34
Files.write(Paths.get(ENV_FILE_PATH), content.getBytes());
35
}
36
0 commit comments