This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[breaking change] now server doesnt build the project during sync | #…
…BAZEL-436 Done reviews imports review comment bsp version fix nullable revert buildifier rebase fix moree e2e tesssts e2e tests should work now e2e tests fix v2 e2e tests fix e2e tests fix upps rollback the manual flag lil bump datalore should work now test fix e2e fix and now we are not returning uri if the file doesnt exist now we dont query bazel for the outputs when we run aspects Merge-request: BAZEL-MR-301 Merged-by: Marcin Abramowicz <marcin.abramowicz@jetbrains.com>
- Loading branch information
1 parent
9d5cd19
commit ba44564
Showing
13 changed files
with
250 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
281 changes: 210 additions & 71 deletions
281
e2e/src/main/java/org/jetbrains/bsp/bazel/BazelBspSampleRepoTest.kt
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 15 additions & 4 deletions
19
e2e/test-resources/sample-repo/manual_target/ScalaTest.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,19 @@ | ||
package manual_target | ||
|
||
object ExampleTest { | ||
def main(args: Array[String]): Unit = { | ||
val s = "Sup" | ||
println(s) | ||
class ExampleSpec extends AnyFlatSpec with should.Matchers { | ||
|
||
"A Stack" should "pop values in last-in-first-out order" in { | ||
val stack = new Stack[Int] | ||
stack.push(1) | ||
stack.push(2) | ||
stack.pop() should be (2) | ||
stack.pop() should be (1) | ||
} | ||
|
||
it should "throw NoSuchElementException if an empty stack is popped" in { | ||
val emptyStack = new Stack[Int] | ||
a [NoSuchElementException] should be thrownBy { | ||
emptyStack.pop() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters