You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/codetransform/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codemodernizer/model/CodeModernizerSessionContext.kt
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,7 @@ const val MAVEN_BUILD_SKIP_UNIT_TESTS = "clean test-compile"
Copy file name to clipboardExpand all lines: plugins/amazonq/codetransform/jetbrains-community/tst/software/aws/toolkits/jetbrains/services/codemodernizer/CodeWhispererCodeModernizerSessionTest.kt
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -335,13 +335,14 @@ class CodeWhispererCodeModernizerSessionTest : CodeWhispererCodeModernizerTestBa
335
335
}
336
336
337
337
@Test
338
-
fun`CodeModernizerSession can create zip and excludes idea folder`() {
338
+
fun`CodeModernizerSession can create zip and excludes idea folder and github folder`() {
339
339
addFilesToProjectModule(
340
340
"pom.xml",
341
341
"src/tmp.java",
342
342
".idea/smth.iml",
343
343
"someModule/pom.xml",
344
-
"someModule/.idea/smthelse.iml"
344
+
"someModule/.idea/smthelse.iml",
345
+
"someModule/.github/test.txt"
345
346
)
346
347
// get project.projectFile because project.projectFile can not be null
347
348
val rootManager =ModuleRootManager.getInstance(module)
0 commit comments